summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2021-03-02 22:47:35 +0100
committerKarolin Seeger <kseeger@samba.org>2021-03-05 13:17:23 +0000
commit4d1ed9c319deac5cba1682611dcefdf002cb9d48 (patch)
tree78ee07d125281079110d241fd24fcd1ea5d513b9
parent1fb83efd7d580de547da774fa5edb6eb72622d54 (diff)
downloadsamba-4d1ed9c319deac5cba1682611dcefdf002cb9d48.tar.gz
wscript: use --as-needed only if tested successfully
Some OSes like Solaris based OmiOS don't support this. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14288 Signed-off-by: Bjoern Jacke <bjacke@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (cherry picked from commit 996560191ac6bd603901dcd6c0de5d239e019ef4)
-rw-r--r--wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/wscript b/wscript
index 334b2988234..3c6b130bd22 100644
--- a/wscript
+++ b/wscript
@@ -340,7 +340,8 @@ def configure(conf):
# allows us to find problems on our development hosts faster.
# It also results in faster load time.
- conf.add_as_needed()
+ conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True)
+
if not conf.CHECK_NEED_LC("-lc not needed"):
conf.ADD_LDFLAGS('-lc', testflags=False)