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

外挂编程

开发平台:

Windows_Unix

  1. #
  2. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  3. #
  4. # Permission is hereby granted, free of charge, to any person obtaining
  5. # a copy of this software and associated documentation files (the
  6. # "Software"), to deal in the Software without restriction, including
  7. # without limitation the rights to use, copy, modify, merge, publish,
  8. # distribute, sublicense, and/or sell copies of the Software, and to
  9. # permit persons to whom the Software is furnished to do so, subject to
  10. # the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included
  13. # in all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  16. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  17. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  19. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  20. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  21. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. #
  23. __revision__ = "src/engine/SCons/Scanner/Prog.py 3057 2008/06/09 22:21:00 knight"
  24. import string
  25. import SCons.Node
  26. import SCons.Node.FS
  27. import SCons.Scanner
  28. import SCons.Util
  29. # global, set by --debug=findlibs
  30. print_find_libs = None
  31. def ProgramScanner(**kw):
  32.     """Return a prototype Scanner instance for scanning executable
  33.     files for static-lib dependencies"""
  34.     kw['path_function'] = SCons.Scanner.FindPathDirs('LIBPATH')
  35.     ps = apply(SCons.Scanner.Base, [scan, "ProgramScanner"], kw)
  36.     return ps
  37. def scan(node, env, libpath = ()):
  38.     """
  39.     This scanner scans program files for static-library
  40.     dependencies.  It will search the LIBPATH environment variable
  41.     for libraries specified in the LIBS variable, returning any
  42.     files it finds as dependencies.
  43.     """
  44.     try:
  45.         libs = env['LIBS']
  46.     except KeyError:
  47.         # There are no LIBS in this environment, so just return a null list:
  48.         return []
  49.     if SCons.Util.is_String(libs):
  50.         libs = string.split(libs)
  51.     else:
  52.         libs = SCons.Util.flatten(libs)
  53.     try:
  54.         prefix = env['LIBPREFIXES']
  55.         if not SCons.Util.is_List(prefix):
  56.             prefix = [ prefix ]
  57.     except KeyError:
  58.         prefix = [ '' ]
  59.     try:
  60.         suffix = env['LIBSUFFIXES']
  61.         if not SCons.Util.is_List(suffix):
  62.             suffix = [ suffix ]
  63.     except KeyError:
  64.         suffix = [ '' ]
  65.     pairs = []
  66.     for suf in map(env.subst, suffix):
  67.         for pref in map(env.subst, prefix):
  68.             pairs.append((pref, suf))
  69.     result = []
  70.     if callable(libpath):
  71.         libpath = libpath()
  72.     find_file = SCons.Node.FS.find_file
  73.     adjustixes = SCons.Util.adjustixes
  74.     for lib in libs:
  75.         if SCons.Util.is_String(lib):
  76.             lib = env.subst(lib)
  77.             for pref, suf in pairs:
  78.                 l = adjustixes(lib, pref, suf)
  79.                 l = find_file(l, libpath, verbose=print_find_libs)
  80.                 if l:
  81.                     result.append(l)
  82.         else:
  83.             result.append(lib)
  84.     return result