mwcc.py
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:7k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Tool.mwcc
  2. Tool-specific initialization for the Metrowerks CodeWarrior 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/mwcc.py 3057 2008/06/09 22:21:00 knight"
  30. import os
  31. import os.path
  32. import string
  33. import SCons.Util
  34. def set_vars(env):
  35.     """Set MWCW_VERSION, MWCW_VERSIONS, and some codewarrior environment vars
  36.     MWCW_VERSIONS is set to a list of objects representing installed versions
  37.     MWCW_VERSION  is set to the version object that will be used for building.
  38.                   MWCW_VERSION can be set to a string during Environment
  39.                   construction to influence which version is chosen, otherwise
  40.                   the latest one from MWCW_VERSIONS is used.
  41.     Returns true if at least one version is found, false otherwise
  42.     """
  43.     desired = env.get('MWCW_VERSION', '')
  44.     # return right away if the variables are already set
  45.     if isinstance(desired, MWVersion):
  46.         return 1
  47.     elif desired is None:
  48.         return 0
  49.     versions = find_versions()
  50.     version = None
  51.     if desired:
  52.         for v in versions:
  53.             if str(v) == desired:
  54.                 version = v
  55.     elif versions:
  56.         version = versions[-1]
  57.     env['MWCW_VERSIONS'] = versions
  58.     env['MWCW_VERSION'] = version
  59.     if version is None:
  60.       return 0
  61.     env.PrependENVPath('PATH', version.clpath)
  62.     env.PrependENVPath('PATH', version.dllpath)
  63.     ENV = env['ENV']
  64.     ENV['CWFolder'] = version.path
  65.     ENV['LM_LICENSE_FILE'] = version.license
  66.     plus = lambda x: '+%s' % x
  67.     ENV['MWCIncludes'] = string.join(map(plus, version.includes), os.pathsep)
  68.     ENV['MWLibraries'] = string.join(map(plus, version.libs), os.pathsep)
  69.     return 1
  70. def find_versions():
  71.     """Return a list of MWVersion objects representing installed versions"""
  72.     versions = []
  73.     ### This function finds CodeWarrior by reading from the registry on
  74.     ### Windows. Some other method needs to be implemented for other
  75.     ### platforms, maybe something that calls env.WhereIs('mwcc')
  76.     if SCons.Util.can_read_reg:
  77.         try:
  78.             HLM = SCons.Util.HKEY_LOCAL_MACHINE
  79.             product = 'SOFTWARE\Metrowerks\CodeWarrior\Product Versions'
  80.             product_key = SCons.Util.RegOpenKeyEx(HLM, product)
  81.             i = 0
  82.             while 1:
  83.                 name = product + '\' + SCons.Util.RegEnumKey(product_key, i)
  84.                 name_key = SCons.Util.RegOpenKeyEx(HLM, name)
  85.                 try:
  86.                     version = SCons.Util.RegQueryValueEx(name_key, 'VERSION')
  87.                     path = SCons.Util.RegQueryValueEx(name_key, 'PATH')
  88.                     mwv = MWVersion(version[0], path[0], 'Win32-X86')
  89.                     versions.append(mwv)
  90.                 except SCons.Util.RegError:
  91.                     pass
  92.                 i = i + 1
  93.         except SCons.Util.RegError:
  94.             pass
  95.     return versions
  96. class MWVersion:
  97.     def __init__(self, version, path, platform):
  98.         self.version = version
  99.         self.path = path
  100.         self.platform = platform
  101.         self.clpath = os.path.join(path, 'Other Metrowerks Tools',
  102.                                    'Command Line Tools')
  103.         self.dllpath = os.path.join(path, 'Bin')
  104.         # The Metrowerks tools don't store any configuration data so they
  105.         # are totally dumb when it comes to locating standard headers,
  106.         # libraries, and other files, expecting all the information
  107.         # to be handed to them in environment variables. The members set
  108.         # below control what information scons injects into the environment
  109.         ### The paths below give a normal build environment in CodeWarrior for
  110.         ### Windows, other versions of CodeWarrior might need different paths.
  111.         msl = os.path.join(path, 'MSL')
  112.         support = os.path.join(path, '%s Support' % platform)
  113.         self.license = os.path.join(path, 'license.dat')
  114.         self.includes = [msl, support]
  115.         self.libs = [msl, support]
  116.     def __str__(self):
  117.         return self.version
  118. CSuffixes = ['.c', '.C']
  119. CXXSuffixes = ['.cc', '.cpp', '.cxx', '.c++', '.C++']
  120. def generate(env):
  121.     """Add Builders and construction variables for the mwcc to an Environment."""
  122.     import SCons.Defaults
  123.     import SCons.Tool
  124.     set_vars(env)
  125.     static_obj, shared_obj = SCons.Tool.createObjBuilders(env)
  126.     for suffix in CSuffixes:
  127.         static_obj.add_action(suffix, SCons.Defaults.CAction)
  128.         shared_obj.add_action(suffix, SCons.Defaults.ShCAction)
  129.     for suffix in CXXSuffixes:
  130.         static_obj.add_action(suffix, SCons.Defaults.CXXAction)
  131.         shared_obj.add_action(suffix, SCons.Defaults.ShCXXAction)
  132.     env['CCCOMFLAGS'] = '$CPPFLAGS $_CPPDEFFLAGS $_CPPINCFLAGS -nolink -o $TARGET $SOURCES'
  133.     env['CC']         = 'mwcc'
  134.     env['CCCOM']      = '$CC $CFLAGS $CCFLAGS $CCCOMFLAGS'
  135.     env['CXX']        = 'mwcc'
  136.     env['CXXCOM']     = '$CXX $CXXFLAGS $CCCOMFLAGS'
  137.     env['SHCC']       = '$CC'
  138.     env['SHCCFLAGS']  = '$CCFLAGS'
  139.     env['SHCFLAGS']   = '$CFLAGS'
  140.     env['SHCCCOM']    = '$SHCC $SHCFLAGS $SHCCFLAGS $CCCOMFLAGS'
  141.     env['SHCXX']       = '$CXX'
  142.     env['SHCXXFLAGS']  = '$CXXFLAGS'
  143.     env['SHCXXCOM']    = '$SHCXX $SHCXXFLAGS $CCCOMFLAGS'
  144.     env['CFILESUFFIX'] = '.c'
  145.     env['CXXFILESUFFIX'] = '.cpp'
  146.     env['CPPDEFPREFIX']  = '-D'
  147.     env['CPPDEFSUFFIX']  = ''
  148.     env['INCPREFIX']  = '-I'
  149.     env['INCSUFFIX']  = ''
  150.     #env['PCH'] = ?
  151.     #env['PCHSTOP'] = ?
  152. def exists(env):
  153.     return set_vars(env)