From: Felix Fietkau Date: Fri, 28 Jun 2013 11:26:55 +0000 (+0000) Subject: e2fsprogs: use -ffunction-sections, -fdata-sections, --gc-sections X-Git-Tag: v14.07~3937 X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=d74eaa9e858aef7c310e6c1fe4c22e01c4b98872;p=openwrt-github%2F.git e2fsprogs: use -ffunction-sections, -fdata-sections, --gc-sections Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37066 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/utils/e2fsprogs/Makefile b/package/utils/e2fsprogs/Makefile index 783648cf63..e1e9aff3f0 100644 --- a/package/utils/e2fsprogs/Makefile +++ b/package/utils/e2fsprogs/Makefile @@ -81,7 +81,8 @@ $(call Package/e2fsprogs) DEPENDS:= +e2fsprogs endef -TARGET_CFLAGS += $(FPIC) +TARGET_CFLAGS += $(FPIC) -ffunction-sections -fdata-sections + CONFIGURE_ARGS += \ --enable-elf-shlibs \ @@ -105,6 +106,7 @@ define Build/Compile LDFLAGS="" \ subst $(MAKE) -C $(PKG_BUILD_DIR) \ + LDFLAGS=-Wl,--gc-sections \ BUILDCC="$(HOSTCC)" \ DESTDIR="$(PKG_INSTALL_DIR)" \ LIBBLKID="$(PKG_BUILD_DIR)/lib/libblkid.a -luuid" \