Lines Matching full:scons
43 import SCons.Action
44 import SCons.Builder
45 import SCons.Scanner
80 action = SCons.Action.Action(symlink, " Symlinking $TARGET ...")
102 # http://www.scons.org/wiki/UnitTests
103 action = SCons.Action.Action(cmd, " Running $SOURCE ...")
140 pipe = SCons.Action._subproc(env, env.Split(env['CC']) + [cpp_opt, source.name],
154 conf = SCons.Script.Configure(env)
166 conf = SCons.Script.Configure(env)
202 env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CFLAGS'])
206 env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CXXFLAGS'])
208 env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
262 … print('scons: warning: debug option is deprecated and will be removed eventually; use instead')
264 print(' scons build=release')
268 … print('scons: warning: profile option is deprecated and will be removed eventually; use instead')
270 print(' scons build=profile')
290 # configuration. See also http://www.scons.org/wiki/AdvancedBuildExample
301 # different scons versions building the same source file
305 print('scons: Using build cache in %s.' % (os.environ['SCONS_CACHE_DIR'],))
315 # - https://github.com/SCons/scons/wiki/GoFastButton
318 # Scons version string has consistently been in this format:
324 scons_version = distutils.version.StrictVersion('.'.join(SCons.__version__.split('.')[:3]))
552 # See http://scons.tigris.org/issues/show_bug.cgi?id=1656