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
master
Felix Fietkau 2011-03-02 12:47:57 +00:00
parent a947385284
commit dc08d4eafc
1 changed files with 3 additions and 0 deletions

View File

@ -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