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

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Tool.linkloc
  2. Tool specification for the LinkLoc linker for the Phar Lap ETS embedded
  3. operating system.
  4. There normally shouldn't be any need to import this module directly.
  5. It will usually be imported through the generic SCons.Tool.Tool()
  6. selection method.
  7. """
  8. #
  9. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  10. #
  11. # Permission is hereby granted, free of charge, to any person obtaining
  12. # a copy of this software and associated documentation files (the
  13. # "Software"), to deal in the Software without restriction, including
  14. # without limitation the rights to use, copy, modify, merge, publish,
  15. # distribute, sublicense, and/or sell copies of the Software, and to
  16. # permit persons to whom the Software is furnished to do so, subject to
  17. # the following conditions:
  18. #
  19. # The above copyright notice and this permission notice shall be included
  20. # in all copies or substantial portions of the Software.
  21. #
  22. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  23. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  24. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  25. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  26. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  27. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  28. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  29. #
  30. __revision__ = "src/engine/SCons/Tool/linkloc.py 3057 2008/06/09 22:21:00 knight"
  31. import os.path
  32. import re
  33. import SCons.Action
  34. import SCons.Defaults
  35. import SCons.Errors
  36. import SCons.Tool
  37. import SCons.Util
  38. from SCons.Tool.msvc import get_msvc_paths
  39. from SCons.Tool.PharLapCommon import addPharLapPaths
  40. _re_linker_command = re.compile(r'(s)@s*([^s]+)')
  41. def repl_linker_command(m):
  42.     # Replaces any linker command file directives (e.g. "@foo.lnk") with
  43.     # the actual contents of the file.
  44.     try:
  45.         f=open(m.group(2), "r")
  46.         return m.group(1) + f.read()
  47.     except IOError:
  48.         # the linker should return an error if it can't
  49.         # find the linker command file so we will remain quiet.
  50.         # However, we will replace the @ with a # so we will not continue
  51.         # to find it with recursive substitution
  52.         return m.group(1) + '#' + m.group(2)
  53. class LinklocGenerator:
  54.     def __init__(self, cmdline):
  55.         self.cmdline = cmdline
  56.     def __call__(self, env, target, source, for_signature):
  57.         if for_signature:
  58.             # Expand the contents of any linker command files recursively
  59.             subs = 1
  60.             strsub = env.subst(self.cmdline, target=target, source=source)
  61.             while subs:
  62.                 strsub, subs = _re_linker_command.subn(repl_linker_command, strsub)
  63.             return strsub
  64.         else:
  65.             return "${TEMPFILE('" + self.cmdline + "')}"
  66. def generate(env):
  67.     """Add Builders and construction variables for ar to an Environment."""
  68.     SCons.Tool.createSharedLibBuilder(env)
  69.     SCons.Tool.createProgBuilder(env)
  70.     env['SUBST_CMD_FILE'] = LinklocGenerator
  71.     env['SHLINK']      = '$LINK'
  72.     env['SHLINKFLAGS'] = SCons.Util.CLVar('$LINKFLAGS')
  73.     env['SHLINKCOM']   = '${SUBST_CMD_FILE("$SHLINK $SHLINKFLAGS $( $_LIBDIRFLAGS $) $_LIBFLAGS -dll $TARGET $SOURCES")}'
  74.     env['SHLIBEMITTER']= None
  75.     env['LINK']        = "linkloc"
  76.     env['LINKFLAGS']   = SCons.Util.CLVar('')
  77.     env['LINKCOM']     = '${SUBST_CMD_FILE("$LINK $LINKFLAGS $( $_LIBDIRFLAGS $) $_LIBFLAGS -exe $TARGET $SOURCES")}'
  78.     env['LIBDIRPREFIX']='-libpath '
  79.     env['LIBDIRSUFFIX']=''
  80.     env['LIBLINKPREFIX']='-lib '
  81.     env['LIBLINKSUFFIX']='$LIBSUFFIX'
  82.     msvs_version = env.get('MSVS_VERSION')
  83.     include_path, lib_path, exe_path = get_msvc_paths(env, version = msvs_version)
  84.     env['ENV']['LIB'] = lib_path
  85.     env.PrependENVPath('PATH', exe_path)
  86.     addPharLapPaths(env)
  87. def exists(env):
  88.     return env.Detect('linkloc')