aixc++.py.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:3k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Tool.aixc++
  2. Tool-specific initialization for IBM xlC / Visual Age C++ compiler.
  3. There normally shouldn't be any need to import this module directly.
  4. It will usually be imported through the generic SCons.Tool.Tool()
  5. selection method.
  6. """
  7. #
  8. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  9. #
  10. # Permission is hereby granted, free of charge, to any person obtaining
  11. # a copy of this software and associated documentation files (the
  12. # "Software"), to deal in the Software without restriction, including
  13. # without limitation the rights to use, copy, modify, merge, publish,
  14. # distribute, sublicense, and/or sell copies of the Software, and to
  15. # permit persons to whom the Software is furnished to do so, subject to
  16. # the following conditions:
  17. #
  18. # The above copyright notice and this permission notice shall be included
  19. # in all copies or substantial portions of the Software.
  20. #
  21. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  22. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  23. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  25. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  26. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  27. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  28. #
  29. __revision__ = "src/engine/SCons/Tool/aixc++.py 3057 2008/06/09 22:21:00 knight"
  30. import os.path
  31. import SCons.Platform.aix
  32. cplusplus = __import__('c++', globals(), locals(), [])
  33. packages = ['vacpp.cmp.core', 'vacpp.cmp.batch', 'vacpp.cmp.C', 'ibmcxx.cmp']
  34. def get_xlc(env):
  35.     xlc = env.get('CXX', 'xlC')
  36.     xlc_r = env.get('SHCXX', 'xlC_r')
  37.     return SCons.Platform.aix.get_xlc(env, xlc, xlc_r, packages)
  38. def smart_cxxflags(source, target, env, for_signature):
  39.     build_dir = env.GetBuildPath()
  40.     if build_dir:
  41.         return '-qtempinc=' + os.path.join(build_dir, 'tempinc')
  42.     return ''
  43. def generate(env):
  44.     """Add Builders and construction variables for xlC / Visual Age
  45.     suite to an Environment."""
  46.     path, _cxx, _shcxx, version = get_xlc(env)
  47.     if path:
  48.         _cxx = os.path.join(path, _cxx)
  49.         _shcxx = os.path.join(path, _shcxx)
  50.     cplusplus.generate(env)
  51.     env['CXX'] = _cxx
  52.     env['SHCXX'] = _shcxx
  53.     env['CXXVERSION'] = version
  54.     env['SHOBJSUFFIX'] = '.pic.o'
  55.     
  56. def exists(env):
  57.     path, _cxx, _shcxx, version = get_xlc(env)
  58.     if path and _cxx:
  59.         xlc = os.path.join(path, _cxx)
  60.         if os.path.exists(xlc):
  61.             return xlc
  62.     return None