diff options
author | Tony Ambardar <itugrok@yahoo.com> | 2018-12-13 23:49:32 -0800 |
---|---|---|
committer | Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> | 2019-02-11 20:18:48 +0000 |
commit | 248797834bf21916ddf663edc96d86ee5377850e (patch) | |
tree | 636f0be1a55ac9ebc84a0a087a52aab9ad724110 /package/network/utils/iproute2/Makefile | |
parent | fc80ef3613465e60257a5ddf0674debe45b09180 (diff) | |
download | upstream-248797834bf21916ddf663edc96d86ee5377850e.tar.gz upstream-248797834bf21916ddf663edc96d86ee5377850e.tar.bz2 upstream-248797834bf21916ddf663edc96d86ee5377850e.zip |
iproute2: tc: reduce size of dynamic symbol table
In the case of SHARED_LIBS=y, don't use -export-dynamic to place *all*
symbols into the dynamic symbol table. Instead, use --dynamic-list to
export a smaller set of symbols similar to that defined in static-syms.h
in the case of SHARED_LIBS=n, avoiding an 11 KB tc package size increase.
Also increment PKG_RELEASE.
Signed-off-by: Tony Ambardar <itugrok@yahoo.com>
Diffstat (limited to 'package/network/utils/iproute2/Makefile')
-rw-r--r-- | package/network/utils/iproute2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/utils/iproute2/Makefile b/package/network/utils/iproute2/Makefile index 6e20e34dd8..d2fe433236 100644 --- a/package/network/utils/iproute2/Makefile +++ b/package/network/utils/iproute2/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=iproute2 PKG_VERSION:=4.20.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@KERNEL/linux/utils/net/iproute2 |