From e6c062c389a0e8490f074a9701a35a93b8d12a02 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 2 Mar 2011 12:47:57 +0000 Subject: [PATCH] dnsmasq: use -ffunction-sections, -fdata-sections and --gc-sections, saves 8k uncompressed SVN-Revision: 25827 --- package/dnsmasq/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/dnsmasq/Makefile b/package/dnsmasq/Makefile index 493797fa28..b71db58587 100644 --- a/package/dnsmasq/Makefile +++ b/package/dnsmasq/Makefile @@ -33,12 +33,15 @@ define Package/dnsmasq/conffiles /etc/dnsmasq.conf endef +TARGET_CFLAGS += -ffunction-sections -fdata-sections + define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ BINDIR="/usr/sbin" MANDIR="/usr/man" \ AWK="awk" \ + LDFLAGS="-Wl,--gc-sections" \ all endef -- 2.30.2