diff options
Diffstat (limited to 'src/engine/SCons')
-rw-r--r-- | src/engine/SCons/Tool/__init__.py | 4 | ||||
-rw-r--r-- | src/engine/SCons/Tool/sgic++.py | 28 | ||||
-rw-r--r-- | src/engine/SCons/Tool/sgicc.py | 7 | ||||
-rw-r--r-- | src/engine/SCons/Tool/sgilink.py | 6 |
4 files changed, 36 insertions, 9 deletions
diff --git a/src/engine/SCons/Tool/__init__.py b/src/engine/SCons/Tool/__init__.py index 9ddfdf3..b71b08b 100644 --- a/src/engine/SCons/Tool/__init__.py +++ b/src/engine/SCons/Tool/__init__.py @@ -248,7 +248,7 @@ def tool_list(platform, env): "prefer MIPSPro on IRIX" linkers = ['sgilink', 'gnulink'] c_compilers = ['sgicc', 'gcc', 'cc'] - cxx_compilers = ['sgicc', 'g++', 'c++'] + cxx_compilers = ['sgic++', 'g++', 'c++'] assemblers = ['as', 'gas'] fortran_compilers = ['f77', 'g77'] ars = ['sgiar'] @@ -299,7 +299,7 @@ def tool_list(platform, env): ar = None else: # Don't use g++ if the C compiler has built-in C++ support: - if c_compiler in ('msvc', 'icc', 'sgicc'): + if c_compiler in ('msvc', 'icc'): cxx_compiler = None else: cxx_compiler = FindTool(cxx_compilers, env) or cxx_compilers[0] diff --git a/src/engine/SCons/Tool/sgic++.py b/src/engine/SCons/Tool/sgic++.py new file mode 100644 index 0000000..a818d39 --- /dev/null +++ b/src/engine/SCons/Tool/sgic++.py @@ -0,0 +1,28 @@ +"""SCons.Tool.sgic++ + +Tool-specific initialization for MIPSpro C++ on SGI. + +There normally shouldn't be any need to import this module directly. +It will usually be imported through the generic SCons.Tool.Tool() +selection method. + +""" +__revision__ = "" + +import os.path +import string + +cplusplus = __import__('c++', globals(), locals(), []) + +def generate(env): + """Add Builders and construction variables for SGI MIPS C++ to an Environment.""" + + cplusplus.generate(env) + + env['CXX'] = 'CC' + env['SHCXX'] = 'CC' + env['SHOBJSUFFIX'] = '.o' + env['STATIC_AND_SHARED_OBJECTS_ARE_THE_SAME'] = 1 + +def exists(env): + return env.Detect('CC') diff --git a/src/engine/SCons/Tool/sgicc.py b/src/engine/SCons/Tool/sgicc.py index cc285e7..da2c26d 100644 --- a/src/engine/SCons/Tool/sgicc.py +++ b/src/engine/SCons/Tool/sgicc.py @@ -1,6 +1,6 @@ """SCons.Tool.sgicc -Tool-specific initialization for MIPSPro CC and cc. +Tool-specific initialization for MIPSPro cc on SGI. There normally shouldn't be any need to import this module directly. It will usually be imported through the generic SCons.Tool.Tool() @@ -38,11 +38,10 @@ import cc def generate(env): """Add Builders and construction variables for gcc to an Environment.""" cc.generate(env) - + env['CXX'] = 'CC' - env['CXXFLAGS'] = ['$CCFLAGS', '-LANG:std'] env['SHOBJSUFFIX'] = '.o' env['STATIC_AND_SHARED_OBJECTS_ARE_THE_SAME'] = 1 def exists(env): - return env.Detect('CC') + return env.Detect('cc') diff --git a/src/engine/SCons/Tool/sgilink.py b/src/engine/SCons/Tool/sgilink.py index aba06cf..5643c08 100644 --- a/src/engine/SCons/Tool/sgilink.py +++ b/src/engine/SCons/Tool/sgilink.py @@ -1,6 +1,6 @@ """SCons.Tool.sgilink -Tool-specific initialization for the SGI MIPSPro linker. +Tool-specific initialization for the SGI MIPSPro linker on SGI. There normally shouldn't be any need to import this module directly. It will usually be imported through the generic SCons.Tool.Tool() @@ -41,8 +41,8 @@ def generate(env): """Add Builders and construction variables for MIPSPro to an Environment.""" link.generate(env) - env['LINK'] = env.Detect(linkers) or 'cc' - env['LINKFLAGS'] = '-LANG:std' + env['LINK'] = env.Detect(linkers) or 'cc' + env['SHLINKFLAGS'] = '$LINKFLAGS -shared' def exists(env): return env.Detect(linkers) |