0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/site_scons/site_tools/libtool.py
2019-04-08 14:08:49 -04:00

20 lines
461 B
Python

import SCons
def generate(env):
env['AR'] = 'libtool'
env['ARCOM'] = '$AR -static -o $TARGET $ARFLAGS $SOURCES'
env['ARFLAGS'] = ["-s", "-no_warning_for_no_symbols"]
def noop_action(env, target, source):
pass
# Disable running ranlib, since we added 's' above
env['RANLIBCOM'] = noop_action
env['RANLIBCOMSTR'] = 'Skipping ranlib for libtool generated target $TARGET'
def exists(env):
return env.detect('libtool')