diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-10-26 11:52:30 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-10-26 11:52:30 +0000 |
commit | 15721224a8ff9e7ea3ac96f7bba0dc6b5a54da70 (patch) | |
tree | 8dca617cab196d8cd2ee4a4d092bc396179d782b /configure | |
parent | 717f2a6d122c1f924c413c7e2f71955e15dab387 (diff) | |
download | execline-15721224a8ff9e7ea3ac96f7bba0dc6b5a54da70.tar.xz |
Separate sections for smaller static binaries (thanks Denys Vlasenko)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -297,6 +297,11 @@ tryflag CPPFLAGS_AUTO -Werror=implicit-function-declaration tryflag CPPFLAGS_AUTO -Werror=implicit-int tryflag CPPFLAGS_AUTO -Werror=pointer-sign tryflag CPPFLAGS_AUTO -Werror=pointer-arith +tryflag CFLAGS_AUTO -ffunction-sections +tryflag CFLAGS_AUTO -fdata-sections + +tryldflag LDFLAGS_AUTO -Wl,--sort-section=alignment +tryldflag LDFLAGS_AUTO -Wl,--sort-common CPPFLAGS_AUTO="${CPPFLAGS_AUTO}${addincpath}" @@ -312,6 +317,7 @@ LDFLAGS_SHARED="${LDFLAGS_SHARED}${addlibdpath}" if $allstatic ; then LDFLAGS_NOSHARED="${LDFLAGS_NOSHARED}${addlibspath}" + tryldflag LDFLAGS_NOSHARED -Wl,--gc-sections else LDFLAGS_NOSHARED="${LDFLAGS_NOSHARED}${addlibdpath}" fi |