From 4ccac7030ad24a9053e76eeb391c9e5e8f730343 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 6 Jul 2011 11:58:10 +1000 Subject: build: Re-enable the -Wl,--as-needed flag --- wscript | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/wscript b/wscript index 32c1c80f73..0b5e68f136 100755 --- a/wscript +++ b/wscript @@ -115,12 +115,8 @@ def configure(conf): # allows us to find problems on our development hosts faster. # It also results in faster load time. - # However, until the source3 waf build settles down, this needs to - # be disabled, as the bugs mentioned above are hitting too many of - # our users - - #if sys.platform != "openbsd4": - # conf.env.asneeded_ldflags = conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True) + if sys.platform != "openbsd4": + conf.env.asneeded_ldflags = conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True) if not conf.CHECK_NEED_LC("-lc not needed"): conf.ADD_LDFLAGS('-lc', testflags=False) -- cgit