[source] mbedtls: add --function-sections and --data-sections to CFLAGS
LEDE Commits
lede-commits at lists.infradead.org
Tue Feb 21 07:08:02 PST 2017
nbd pushed a commit to source.git, branch master:
https://git.lede-project.org/7df0069bb5c51907ba54a5342c755ad8e19e57a9
commit 7df0069bb5c51907ba54a5342c755ad8e19e57a9
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Tue Feb 21 14:33:14 2017 +0100
mbedtls: add --function-sections and --data-sections to CFLAGS
This allows binaries that links these libraries statically to be reduced
by using --gc-sections on link
Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
package/libs/mbedtls/Makefile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/libs/mbedtls/Makefile b/package/libs/mbedtls/Makefile
index 12b97da..a7d698c 100644
--- a/package/libs/mbedtls/Makefile
+++ b/package/libs/mbedtls/Makefile
@@ -48,6 +48,8 @@ endef
PKG_INSTALL:=1
+TARGET_CFLAGS += -ffunction-sections -fdata-sections
+
CMAKE_OPTIONS += \
-DCMAKE_BUILD_TYPE:String="Release" \
-DUSE_SHARED_MBEDTLS_LIBRARY:Bool=ON \
More information about the lede-commits
mailing list