diff options
author | Eliot Horowitz <eliot@10gen.com> | 2010-07-26 17:17:20 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2010-07-26 17:17:20 -0400 |
commit | a85b659bb6cc722a407e0fea6c39d2a523382a78 (patch) | |
tree | 121db2c9b985629f586aedb1d8b579504ed32c6d /distsrc | |
parent | d3d978a60187894e6f148ea35a2c7ba2ab6c0345 (diff) | |
download | mongo-a85b659bb6cc722a407e0fea6c39d2a523382a78.tar.gz |
SERVER-1266 -Wl,as-needed flag for shared library
Diffstat (limited to 'distsrc')
-rw-r--r-- | distsrc/client/SConstruct | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/distsrc/client/SConstruct b/distsrc/client/SConstruct index 8aa279be4a4..59b47d922c2 100644 --- a/distsrc/client/SConstruct +++ b/distsrc/client/SConstruct @@ -34,6 +34,7 @@ elif "linux2" == os.sys.platform: if nix: env.Append( CPPFLAGS=" -O3" ) + env.Append( LINKFLAGS=" -Wl,--as-needed -Wl,-zdefs " ) boostLibs = [ "thread" , "filesystem" , "system" ] env.Prepend( LIBS =["boost_%s-mt"%(lib) for lib in boostLibs ] ) |