This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add compiler and linker options to reduce binary size for release build: - reduce symbol visibility: `-fvisibility=hidden`, `-fvisibility-inlines=hidden`; - link time optimization `-flto` and enable gold plugin; - remove duplicated code: `–icf=all`; - size optimization for compilation (`-Oz`); - garbage collect unused sections: `-Wl,--gc-sections`
- Loading branch information