diff options
Diffstat (limited to 'src/engine/SCons/Tool/g++.py')
| -rw-r--r-- | src/engine/SCons/Tool/g++.py | 43 | 
1 files changed, 4 insertions, 39 deletions
diff --git a/src/engine/SCons/Tool/g++.py b/src/engine/SCons/Tool/g++.py index 1d12962..468fa87 100644 --- a/src/engine/SCons/Tool/g++.py +++ b/src/engine/SCons/Tool/g++.py @@ -9,7 +9,7 @@ selection method.  """  # -# Copyright (c) 2001 - 2016 The SCons Foundation +# Copyright (c) 2001 - 2017 The SCons Foundation  #  # Permission is hereby granted, free of charge, to any person obtaining  # a copy of this software and associated documentation files (the @@ -31,47 +31,12 @@ selection method.  # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  # -__revision__ = "src/engine/SCons/Tool/g++.py rel_2.5.1:3735:9dc6cee5c168 2016/11/03 14:02:02 bdbaddog" +__revision__ = "src/engine/SCons/Tool/g++.py rel_3.0.0:4395:8972f6a2f699 2017/09/18 12:59:24 bdbaddog" -import os.path -import re -import subprocess -import SCons.Tool -import SCons.Util +#forward proxy to the preffered cxx version +from SCons.Tool.gxx import * -import gcc - -cplusplus = __import__('c++', globals(), locals(), []) - -compilers = ['g++'] - -def generate(env): -    """Add Builders and construction variables for g++ to an Environment.""" -    static_obj, shared_obj = SCons.Tool.createObjBuilders(env) - -    if 'CXX' not in env: -        env['CXX']    = env.Detect(compilers) or compilers[0] - -    cplusplus.generate(env) - -    # platform specific settings -    if env['PLATFORM'] == 'aix': -        env['SHCXXFLAGS'] = SCons.Util.CLVar('$CXXFLAGS -mminimal-toc') -        env['STATIC_AND_SHARED_OBJECTS_ARE_THE_SAME'] = 1 -        env['SHOBJSUFFIX'] = '$OBJSUFFIX' -    elif env['PLATFORM'] == 'hpux': -        env['SHOBJSUFFIX'] = '.pic.o' -    elif env['PLATFORM'] == 'sunos': -        env['SHOBJSUFFIX'] = '.pic.o' -    # determine compiler version -    version = gcc.detect_version(env, env['CXX']) -    if version: -        env['CXXVERSION'] = version - -def exists(env): -    # is executable, and is a GNU compiler (or accepts '--version' at least) -    return gcc.detect_version(env, env.Detect(env.get('CXX', compilers)))  # Local Variables:  # tab-width:4  | 
