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

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Tool.mwld
  2. Tool-specific initialization for the Metrowerks CodeWarrior linker.
  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/mwld.py 3057 2008/06/09 22:21:00 knight"
  30. import SCons.Tool
  31. def generate(env):
  32.     """Add Builders and construction variables for lib to an Environment."""
  33.     SCons.Tool.createStaticLibBuilder(env)
  34.     SCons.Tool.createSharedLibBuilder(env)
  35.     SCons.Tool.createProgBuilder(env)
  36.     env['AR'] = 'mwld'
  37.     env['ARCOM'] = '$AR $ARFLAGS -library -o $TARGET $SOURCES'
  38.     env['LIBDIRPREFIX'] = '-L'
  39.     env['LIBDIRSUFFIX'] = ''
  40.     env['LIBLINKPREFIX'] = '-l'
  41.     env['LIBLINKSUFFIX'] = '.lib'
  42.     env['LINK'] = 'mwld'
  43.     env['LINKCOM'] = '$LINK $LINKFLAGS -o $TARGET $SOURCES $_LIBDIRFLAGS $_LIBFLAGS'
  44.     env['SHLINK'] = '$LINK'
  45.     env['SHLINKFLAGS'] = '$LINKFLAGS'
  46.     env['SHLINKCOM']   = shlib_action
  47.     env['SHLIBEMITTER']= shlib_emitter
  48. def exists(env):
  49.     import SCons.Tool.mwcc
  50.     return SCons.Tool.mwcc.set_vars(env)
  51. def shlib_generator(target, source, env, for_signature):
  52.     cmd = ['$SHLINK', '$SHLINKFLAGS', '-shared']
  53.     no_import_lib = env.get('no_import_lib', 0)
  54.     if no_import_lib: cmd.extend('-noimplib')
  55.     dll = env.FindIxes(target, 'SHLIBPREFIX', 'SHLIBSUFFIX')
  56.     if dll: cmd.extend(['-o', dll])
  57.     implib = env.FindIxes(target, 'LIBPREFIX', 'LIBSUFFIX')
  58.     if implib: cmd.extend(['-implib', implib.get_string(for_signature)])
  59.     cmd.extend(['$SOURCES', '$_LIBDIRFLAGS', '$_LIBFLAGS'])
  60.     return [cmd]
  61. def shlib_emitter(target, source, env):
  62.     dll = env.FindIxes(target, 'SHLIBPREFIX', 'SHLIBSUFFIX')
  63.     no_import_lib = env.get('no_import_lib', 0)
  64.     if not dll:
  65.         raise SCons.Errors.UserError, "A shared library should have exactly one target with the suffix: %s" % env.subst("$SHLIBSUFFIX")
  66.     if not no_import_lib and 
  67.        not env.FindIxes(target, 'LIBPREFIX', 'LIBSUFFIX'):
  68.         # Append an import library to the list of targets.
  69.         target.append(env.ReplaceIxes(dll,
  70.                                       'SHLIBPREFIX', 'SHLIBSUFFIX',
  71.                                       'LIBPREFIX', 'LIBSUFFIX'))
  72.     return target, source
  73. shlib_action = SCons.Action.Action(shlib_generator, generator=1)