diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-12-19 06:35:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-12-19 06:35:23 +0000 |
commit | 78babdb9542fae95a5b890a57630af7bcc22d61b (patch) | |
tree | 328a5b3acfa8eee38184288358fb2cfbcfb4fd9d /package/libpcap/Makefile | |
parent | c3f7c0f12118553f5485640f6ad1404dea849b60 (diff) | |
download | upstream-78babdb9542fae95a5b890a57630af7bcc22d61b.tar.gz upstream-78babdb9542fae95a5b890a57630af7bcc22d61b.tar.bz2 upstream-78babdb9542fae95a5b890a57630af7bcc22d61b.zip |
reduce the binary size of libpcap based programs that don't use bpf parsing
SVN-Revision: 13686
Diffstat (limited to 'package/libpcap/Makefile')
-rw-r--r-- | package/libpcap/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/libpcap/Makefile b/package/libpcap/Makefile index cf0304b4cf..620fdb94bc 100644 --- a/package/libpcap/Makefile +++ b/package/libpcap/Makefile @@ -30,7 +30,8 @@ define Package/libpcap/description packet capture. endef -TARGET_CFLAGS += $(FPIC) +TARGET_CFLAGS += \ + -ffunction-sections -fdata-sections CONFIGURE_ARGS += \ --enable-shared \ |