From: Felix Fietkau Date: Wed, 2 Mar 2011 12:47:57 +0000 (+0000) Subject: dnsmasq: use -ffunction-sections, -fdata-sections and --gc-sections, saves 8k uncompr... X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=dc08d4eafccbc9fc2ccbe97f2e9022ed927d497a;p=15.05%2Fopenwrt.git dnsmasq: use -ffunction-sections, -fdata-sections and --gc-sections, saves 8k uncompressed git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25827 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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