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

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Tool
  2. SCons tool selection.
  3. This looks for modules that define a callable object that can modify
  4. a construction environment as appropriate for a given tool (or tool
  5. chain).
  6. Note that because this subsystem just *selects* a callable that can
  7. modify a construction environment, it's possible for people to define
  8. their own "tool specification" in an arbitrary callable function.  No
  9. one needs to use or tie in to this subsystem in order to roll their own
  10. tool definition.
  11. """
  12. #
  13. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  14. #
  15. # Permission is hereby granted, free of charge, to any person obtaining
  16. # a copy of this software and associated documentation files (the
  17. # "Software"), to deal in the Software without restriction, including
  18. # without limitation the rights to use, copy, modify, merge, publish,
  19. # distribute, sublicense, and/or sell copies of the Software, and to
  20. # permit persons to whom the Software is furnished to do so, subject to
  21. # the following conditions:
  22. #
  23. # The above copyright notice and this permission notice shall be included
  24. # in all copies or substantial portions of the Software.
  25. #
  26. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  27. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  28. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  29. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  30. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  31. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  32. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  33. #
  34. __revision__ = "src/engine/SCons/Tool/__init__.py 3057 2008/06/09 22:21:00 knight"
  35. import imp
  36. import sys
  37. import SCons.Builder
  38. import SCons.Errors
  39. import SCons.Node.FS
  40. import SCons.Scanner
  41. import SCons.Scanner.C
  42. import SCons.Scanner.D
  43. import SCons.Scanner.LaTeX
  44. import SCons.Scanner.Prog
  45. DefaultToolpath=[]
  46. CScanner = SCons.Scanner.C.CScanner()
  47. DScanner = SCons.Scanner.D.DScanner()
  48. LaTeXScanner = SCons.Scanner.LaTeX.LaTeXScanner()
  49. ProgramScanner = SCons.Scanner.Prog.ProgramScanner()
  50. SourceFileScanner = SCons.Scanner.Base({}, name='SourceFileScanner')
  51. CSuffixes = [".c", ".C", ".cxx", ".cpp", ".c++", ".cc",
  52.              ".h", ".H", ".hxx", ".hpp", ".hh",
  53.              ".F", ".fpp", ".FPP",
  54.              ".m", ".mm",
  55.              ".S", ".spp", ".SPP"]
  56. DSuffixes = ['.d']
  57. IDLSuffixes = [".idl", ".IDL"]
  58. LaTeXSuffixes = [".tex", ".ltx", ".latex"]
  59. for suffix in CSuffixes:
  60.     SourceFileScanner.add_scanner(suffix, CScanner)
  61. for suffix in DSuffixes:
  62.     SourceFileScanner.add_scanner(suffix, DScanner)
  63. for suffix in LaTeXSuffixes:
  64.      SourceFileScanner.add_scanner(suffix, LaTeXScanner)
  65. class Tool:
  66.     def __init__(self, name, toolpath=[], **kw):
  67.         self.name = name
  68.         self.toolpath = toolpath + DefaultToolpath
  69.         # remember these so we can merge them into the call
  70.         self.init_kw = kw
  71.         module = self._tool_module()
  72.         self.generate = module.generate
  73.         self.exists = module.exists
  74.         if hasattr(module, 'options'):
  75.             self.options = module.options
  76.     def _tool_module(self):
  77.         # TODO: Interchange zipimport with normal initilization for better error reporting
  78.         oldpythonpath = sys.path
  79.         sys.path = self.toolpath + sys.path
  80.         try:
  81.             try:
  82.                 file, path, desc = imp.find_module(self.name, self.toolpath)
  83.                 try:
  84.                     return imp.load_module(self.name, file, path, desc)
  85.                 finally:
  86.                     if file:
  87.                         file.close()
  88.             except ImportError, e:
  89.                 if str(e)!="No module named %s"%self.name:
  90.                     raise SCons.Errors.EnvironmentError, e
  91.                 try:
  92.                     import zipimport
  93.                 except ImportError:
  94.                     pass
  95.                 else:
  96.                     for aPath in self.toolpath:
  97.                         try:
  98.                             importer = zipimport.zipimporter(aPath)
  99.                             return importer.load_module(self.name)
  100.                         except ImportError, e:
  101.                             pass
  102.         finally:
  103.             sys.path = oldpythonpath
  104.         full_name = 'SCons.Tool.' + self.name
  105.         try:
  106.             return sys.modules[full_name]
  107.         except KeyError:
  108.             try:
  109.                 smpath = sys.modules['SCons.Tool'].__path__
  110.                 try:
  111.                     file, path, desc = imp.find_module(self.name, smpath)
  112.                     module = imp.load_module(full_name, file, path, desc)
  113.                     setattr(SCons.Tool, self.name, module)
  114.                     if file:
  115.                         file.close()
  116.                     return module
  117.                 except ImportError, e:
  118.                     if e!="No module named %s"%self.name:
  119.                         raise SCons.Errors.EnvironmentError, e
  120.                     try:
  121.                         import zipimport
  122.                         importer = zipimport.zipimporter( sys.modules['SCons.Tool'].__path__[0] )
  123.                         module = importer.load_module(full_name)
  124.                         setattr(SCons.Tool, self.name, module)
  125.                         return module
  126.                     except ImportError, e:
  127.                         m = "No tool named '%s': %s" % (self.name, e)
  128.                         raise SCons.Errors.EnvironmentError, m
  129.             except ImportError, e:
  130.                 m = "No tool named '%s': %s" % (self.name, e)
  131.                 raise SCons.Errors.EnvironmentError, m
  132.     def __call__(self, env, *args, **kw):
  133.         if self.init_kw is not None:
  134.             # Merge call kws into init kws;
  135.             # but don't bash self.init_kw.
  136.             if kw is not None:
  137.                 call_kw = kw
  138.                 kw = self.init_kw.copy()
  139.                 kw.update(call_kw)
  140.             else:
  141.                 kw = self.init_kw
  142.         env.Append(TOOLS = [ self.name ])
  143.         if hasattr(self, 'options'):
  144.             import SCons.Variables
  145.             if not env.has_key('options'):
  146.                 from SCons.Script import ARGUMENTS
  147.                 env['options']=SCons.Variables.Variables(args=ARGUMENTS)
  148.             opts=env['options']
  149.             self.options(opts)
  150.             opts.Update(env)
  151.         apply(self.generate, ( env, ) + args, kw)
  152.     def __str__(self):
  153.         return self.name
  154. ##########################################################################
  155. #  Create common executable program / library / object builders
  156. def createProgBuilder(env):
  157.     """This is a utility function that creates the Program
  158.     Builder in an Environment if it is not there already.
  159.     If it is already there, we return the existing one.
  160.     """
  161.     try:
  162.         program = env['BUILDERS']['Program']
  163.     except KeyError:
  164.         import SCons.Defaults
  165.         program = SCons.Builder.Builder(action = SCons.Defaults.LinkAction,
  166.                                         emitter = '$PROGEMITTER',
  167.                                         prefix = '$PROGPREFIX',
  168.                                         suffix = '$PROGSUFFIX',
  169.                                         src_suffix = '$OBJSUFFIX',
  170.                                         src_builder = 'Object',
  171.                                         target_scanner = ProgramScanner)
  172.         env['BUILDERS']['Program'] = program
  173.     return program
  174. def createStaticLibBuilder(env):
  175.     """This is a utility function that creates the StaticLibrary
  176.     Builder in an Environment if it is not there already.
  177.     If it is already there, we return the existing one.
  178.     """
  179.     try:
  180.         static_lib = env['BUILDERS']['StaticLibrary']
  181.     except KeyError:
  182.         action_list = [ SCons.Action.Action("$ARCOM", "$ARCOMSTR") ]
  183.         if env.Detect('ranlib'):
  184.             ranlib_action = SCons.Action.Action("$RANLIBCOM", "$RANLIBCOMSTR")
  185.             action_list.append(ranlib_action)
  186.         static_lib = SCons.Builder.Builder(action = action_list,
  187.                                            emitter = '$LIBEMITTER',
  188.                                            prefix = '$LIBPREFIX',
  189.                                            suffix = '$LIBSUFFIX',
  190.                                            src_suffix = '$OBJSUFFIX',
  191.                                            src_builder = 'StaticObject')
  192.         env['BUILDERS']['StaticLibrary'] = static_lib
  193.         env['BUILDERS']['Library'] = static_lib
  194.     return static_lib
  195. def createSharedLibBuilder(env):
  196.     """This is a utility function that creates the SharedLibrary
  197.     Builder in an Environment if it is not there already.
  198.     If it is already there, we return the existing one.
  199.     """
  200.     try:
  201.         shared_lib = env['BUILDERS']['SharedLibrary']
  202.     except KeyError:
  203.         import SCons.Defaults
  204.         action_list = [ SCons.Defaults.SharedCheck,
  205.                         SCons.Defaults.ShLinkAction ]
  206.         shared_lib = SCons.Builder.Builder(action = action_list,
  207.                                            emitter = "$SHLIBEMITTER",
  208.                                            prefix = '$SHLIBPREFIX',
  209.                                            suffix = '$SHLIBSUFFIX',
  210.                                            target_scanner = ProgramScanner,
  211.                                            src_suffix = '$SHOBJSUFFIX',
  212.                                            src_builder = 'SharedObject')
  213.         env['BUILDERS']['SharedLibrary'] = shared_lib
  214.     return shared_lib
  215. def createLoadableModuleBuilder(env):
  216.     """This is a utility function that creates the LoadableModule
  217.     Builder in an Environment if it is not there already.
  218.     If it is already there, we return the existing one.
  219.     """
  220.     try:
  221.         ld_module = env['BUILDERS']['LoadableModule']
  222.     except KeyError:
  223.         import SCons.Defaults
  224.         action_list = [ SCons.Defaults.SharedCheck,
  225.                         SCons.Defaults.LdModuleLinkAction ]
  226.         ld_module = SCons.Builder.Builder(action = action_list,
  227.                                           emitter = "$SHLIBEMITTER",
  228.                                           prefix = '$LDMODULEPREFIX',
  229.                                           suffix = '$LDMODULESUFFIX',
  230.                                           target_scanner = ProgramScanner,
  231.                                           src_suffix = '$SHOBJSUFFIX',
  232.                                           src_builder = 'SharedObject')
  233.         env['BUILDERS']['LoadableModule'] = ld_module
  234.     return ld_module
  235. def createObjBuilders(env):
  236.     """This is a utility function that creates the StaticObject
  237.     and SharedObject Builders in an Environment if they
  238.     are not there already.
  239.     If they are there already, we return the existing ones.
  240.     This is a separate function because soooo many Tools
  241.     use this functionality.
  242.     The return is a 2-tuple of (StaticObject, SharedObject)
  243.     """
  244.     try:
  245.         static_obj = env['BUILDERS']['StaticObject']
  246.     except KeyError:
  247.         static_obj = SCons.Builder.Builder(action = {},
  248.                                            emitter = {},
  249.                                            prefix = '$OBJPREFIX',
  250.                                            suffix = '$OBJSUFFIX',
  251.                                            src_builder = ['CFile', 'CXXFile'],
  252.                                            source_scanner = SourceFileScanner,
  253.                                            single_source = 1)
  254.         env['BUILDERS']['StaticObject'] = static_obj
  255.         env['BUILDERS']['Object'] = static_obj
  256.     try:
  257.         shared_obj = env['BUILDERS']['SharedObject']
  258.     except KeyError:
  259.         shared_obj = SCons.Builder.Builder(action = {},
  260.                                            emitter = {},
  261.                                            prefix = '$SHOBJPREFIX',
  262.                                            suffix = '$SHOBJSUFFIX',
  263.                                            src_builder = ['CFile', 'CXXFile'],
  264.                                            source_scanner = SourceFileScanner,
  265.                                            single_source = 1)
  266.         env['BUILDERS']['SharedObject'] = shared_obj
  267.     return (static_obj, shared_obj)
  268. def createCFileBuilders(env):
  269.     """This is a utility function that creates the CFile/CXXFile
  270.     Builders in an Environment if they
  271.     are not there already.
  272.     If they are there already, we return the existing ones.
  273.     This is a separate function because soooo many Tools
  274.     use this functionality.
  275.     The return is a 2-tuple of (CFile, CXXFile)
  276.     """
  277.     try:
  278.         c_file = env['BUILDERS']['CFile']
  279.     except KeyError:
  280.         c_file = SCons.Builder.Builder(action = {},
  281.                                        emitter = {},
  282.                                        suffix = {None:'$CFILESUFFIX'})
  283.         env['BUILDERS']['CFile'] = c_file
  284.         env.SetDefault(CFILESUFFIX = '.c')
  285.     try:
  286.         cxx_file = env['BUILDERS']['CXXFile']
  287.     except KeyError:
  288.         cxx_file = SCons.Builder.Builder(action = {},
  289.                                          emitter = {},
  290.                                          suffix = {None:'$CXXFILESUFFIX'})
  291.         env['BUILDERS']['CXXFile'] = cxx_file
  292.         env.SetDefault(CXXFILESUFFIX = '.cc')
  293.     return (c_file, cxx_file)
  294. ##########################################################################
  295. #  Create common Java builders
  296. def CreateJarBuilder(env):
  297.     try:
  298.         java_jar = env['BUILDERS']['Jar']
  299.     except KeyError:
  300.         fs = SCons.Node.FS.get_default_fs()
  301.         jar_com = SCons.Action.Action('$JARCOM', '$JARCOMSTR')
  302.         java_jar = SCons.Builder.Builder(action = jar_com,
  303.                                          suffix = '$JARSUFFIX',
  304.                                          src_suffix = '$JAVACLASSSUFIX',
  305.                                          src_builder = 'JavaClassFile',
  306.                                          source_factory = fs.Entry)
  307.         env['BUILDERS']['Jar'] = java_jar
  308.     return java_jar
  309. def CreateJavaHBuilder(env):
  310.     try:
  311.         java_javah = env['BUILDERS']['JavaH']
  312.     except KeyError:
  313.         fs = SCons.Node.FS.get_default_fs()
  314.         java_javah_com = SCons.Action.Action('$JAVAHCOM', '$JAVAHCOMSTR')
  315.         java_javah = SCons.Builder.Builder(action = java_javah_com,
  316.                                            src_suffix = '$JAVACLASSSUFFIX',
  317.                                            target_factory = fs.Entry,
  318.                                            source_factory = fs.File,
  319.                                            src_builder = 'JavaClassFile')
  320.         env['BUILDERS']['JavaH'] = java_javah
  321.     return java_javah
  322. def CreateJavaClassFileBuilder(env):
  323.     try:
  324.         java_class_file = env['BUILDERS']['JavaClassFile']
  325.     except KeyError:
  326.         fs = SCons.Node.FS.get_default_fs()
  327.         javac_com = SCons.Action.Action('$JAVACCOM', '$JAVACCOMSTR')
  328.         java_class_file = SCons.Builder.Builder(action = javac_com,
  329.                                                 emitter = {},
  330.                                                 #suffix = '$JAVACLASSSUFFIX',
  331.                                                 src_suffix = '$JAVASUFFIX',
  332.                                                 src_builder = ['JavaFile'],
  333.                                                 target_factory = fs.Entry,
  334.                                                 source_factory = fs.File)
  335.         env['BUILDERS']['JavaClassFile'] = java_class_file
  336.     return java_class_file
  337. def CreateJavaClassDirBuilder(env):
  338.     try:
  339.         java_class_dir = env['BUILDERS']['JavaClassDir']
  340.     except KeyError:
  341.         fs = SCons.Node.FS.get_default_fs()
  342.         javac_com = SCons.Action.Action('$JAVACCOM', '$JAVACCOMSTR')
  343.         java_class_dir = SCons.Builder.Builder(action = javac_com,
  344.                                                emitter = {},
  345.                                                target_factory = fs.Dir,
  346.                                                source_factory = fs.Dir)
  347.         env['BUILDERS']['JavaClassDir'] = java_class_dir
  348.     return java_class_dir
  349. def CreateJavaFileBuilder(env):
  350.     try:
  351.         java_file = env['BUILDERS']['JavaFile']
  352.     except KeyError:
  353.         java_file = SCons.Builder.Builder(action = {},
  354.                                           emitter = {},
  355.                                           suffix = {None:'$JAVASUFFIX'})
  356.         env['BUILDERS']['JavaFile'] = java_file
  357.         env['JAVASUFFIX'] = '.java'
  358.     return java_file
  359. class ToolInitializerMethod:
  360.     """
  361.     This is added to a construction environment in place of a
  362.     method(s) normally called for a Builder (env.Object, env.StaticObject,
  363.     etc.).  When called, it has its associated ToolInitializer
  364.     object search the specified list of tools and apply the first
  365.     one that exists to the construction environment.  It then calls
  366.     whatever builder was (presumably) added to the construction
  367.     environment in place of this particular instance.
  368.     """
  369.     def __init__(self, name, initializer):
  370.         """
  371.         Note:  we store the tool name as __name__ so it can be used by
  372.         the class that attaches this to a construction environment.
  373.         """
  374.         self.__name__ = name
  375.         self.initializer = initializer
  376.     def get_builder(self, env):
  377.         """
  378. Returns the appropriate real Builder for this method name
  379. after having the associated ToolInitializer object apply
  380. the appropriate Tool module.
  381.         """
  382.         builder = getattr(env, self.__name__)
  383.         self.initializer.apply_tools(env)
  384.         builder = getattr(env, self.__name__)
  385.         if builder is self:
  386.             # There was no Builder added, which means no valid Tool
  387.             # for this name was found (or possibly there's a mismatch
  388.             # between the name we were called by and the Builder name
  389.             # added by the Tool module).
  390.             return None
  391.         self.initializer.remove_methods(env)
  392.         return builder
  393.     def __call__(self, env, *args, **kw):
  394.         """
  395.         """
  396.         builder = self.get_builder(env)
  397.         if builder is None:
  398.             return [], []
  399.         return apply(builder, args, kw)
  400. class ToolInitializer:
  401.     """
  402.     A class for delayed initialization of Tools modules.
  403.     Instances of this class associate a list of Tool modules with
  404.     a list of Builder method names that will be added by those Tool
  405.     modules.  As part of instantiating this object for a particular
  406.     construction environment, we also add the appropriate
  407.     ToolInitializerMethod objects for the various Builder methods
  408.     that we want to use to delay Tool searches until necessary.
  409.     """
  410.     def __init__(self, env, tools, names):
  411.         if not SCons.Util.is_List(tools):
  412.             tools = [tools]
  413.         if not SCons.Util.is_List(names):
  414.             names = [names]
  415.         self.env = env
  416.         self.tools = tools
  417.         self.names = names
  418.         self.methods = {}
  419.         for name in names:
  420.             method = ToolInitializerMethod(name, self)
  421.             self.methods[name] = method
  422.             env.AddMethod(method)
  423.     def remove_methods(self, env):
  424.         """
  425.         Removes the methods that were added by the tool initialization
  426.         so we no longer copy and re-bind them when the construction
  427.         environment gets cloned.
  428.         """
  429.         for method in self.methods.values():
  430.             env.RemoveMethod(method)
  431.     def apply_tools(self, env):
  432.         """
  433. Searches the list of associated Tool modules for one that
  434. exists, and applies that to the construction environment.
  435.         """
  436.         for t in self.tools:
  437.             tool = SCons.Tool.Tool(t)
  438.             if tool.exists(env):
  439.                 env.Tool(tool)
  440.                 return
  441. # If we fall through here, there was no tool module found.
  442. # This is where we can put an informative error message
  443. # about the inability to find the tool.   We'll start doing
  444. # this as we cut over more pre-defined Builder+Tools to use
  445. # the ToolInitializer class.
  446. def Initializers(env):
  447.     ToolInitializer(env, ['install'], ['_InternalInstall', '_InternalInstallAs'])
  448.     def Install(self, *args, **kw):
  449.         return apply(self._InternalInstall, args, kw)
  450.     def InstallAs(self, *args, **kw):
  451.         return apply(self._InternalInstallAs, args, kw)
  452.     env.AddMethod(Install)
  453.     env.AddMethod(InstallAs)
  454. def FindTool(tools, env):
  455.     for tool in tools:
  456.         t = Tool(tool)
  457.         if t.exists(env):
  458.             return tool
  459.     return None
  460. def FindAllTools(tools, env):
  461.     def ToolExists(tool, env=env):
  462.         return Tool(tool).exists(env)
  463.     return filter (ToolExists, tools)
  464. def tool_list(platform, env):
  465.     # XXX this logic about what tool to prefer on which platform
  466.     #     should be moved into either the platform files or
  467.     #     the tool files themselves.
  468.     # The search orders here are described in the man page.  If you
  469.     # change these search orders, update the man page as well.
  470.     if str(platform) == 'win32':
  471.         "prefer Microsoft tools on Windows"
  472.         linkers = ['mslink', 'gnulink', 'ilink', 'linkloc', 'ilink32' ]
  473.         c_compilers = ['msvc', 'mingw', 'gcc', 'intelc', 'icl', 'icc', 'cc', 'bcc32' ]
  474.         cxx_compilers = ['msvc', 'intelc', 'icc', 'g++', 'c++', 'bcc32' ]
  475.         assemblers = ['masm', 'nasm', 'gas', '386asm' ]
  476.         fortran_compilers = ['gfortran', 'g77', 'ifl', 'cvf', 'f95', 'f90', 'fortran']
  477.         ars = ['mslib', 'ar', 'tlib']
  478.     elif str(platform) == 'os2':
  479.         "prefer IBM tools on OS/2"
  480.         linkers = ['ilink', 'gnulink', 'mslink']
  481.         c_compilers = ['icc', 'gcc', 'msvc', 'cc']
  482.         cxx_compilers = ['icc', 'g++', 'msvc', 'c++']
  483.         assemblers = ['nasm', 'masm', 'gas']
  484.         fortran_compilers = ['ifl', 'g77']
  485.         ars = ['ar', 'mslib']
  486.     elif str(platform) == 'irix':
  487.         "prefer MIPSPro on IRIX"
  488.         linkers = ['sgilink', 'gnulink']
  489.         c_compilers = ['sgicc', 'gcc', 'cc']
  490.         cxx_compilers = ['sgic++', 'g++', 'c++']
  491.         assemblers = ['as', 'gas']
  492.         fortran_compilers = ['f95', 'f90', 'f77', 'g77', 'fortran']
  493.         ars = ['sgiar']
  494.     elif str(platform) == 'sunos':
  495.         "prefer Forte tools on SunOS"
  496.         linkers = ['sunlink', 'gnulink']
  497.         c_compilers = ['suncc', 'gcc', 'cc']
  498.         cxx_compilers = ['sunc++', 'g++', 'c++']
  499.         assemblers = ['as', 'gas']
  500.         fortran_compilers = ['sunf95', 'sunf90', 'sunf77', 'f95', 'f90', 'f77',
  501.                              'gfortran', 'g77', 'fortran']
  502.         ars = ['sunar']
  503.     elif str(platform) == 'hpux':
  504.         "prefer aCC tools on HP-UX"
  505.         linkers = ['hplink', 'gnulink']
  506.         c_compilers = ['hpcc', 'gcc', 'cc']
  507.         cxx_compilers = ['hpc++', 'g++', 'c++']
  508.         assemblers = ['as', 'gas']
  509.         fortran_compilers = ['f95', 'f90', 'f77', 'g77', 'fortran']
  510.         ars = ['ar']
  511.     elif str(platform) == 'aix':
  512.         "prefer AIX Visual Age tools on AIX"
  513.         linkers = ['aixlink', 'gnulink']
  514.         c_compilers = ['aixcc', 'gcc', 'cc']
  515.         cxx_compilers = ['aixc++', 'g++', 'c++']
  516.         assemblers = ['as', 'gas']
  517.         fortran_compilers = ['f95', 'f90', 'aixf77', 'g77', 'fortran']
  518.         ars = ['ar']
  519.     elif str(platform) == 'darwin':
  520.         "prefer GNU tools on Mac OS X, except for some linkers and IBM tools"
  521.         linkers = ['applelink', 'gnulink']
  522.         c_compilers = ['gcc', 'cc']
  523.         cxx_compilers = ['g++', 'c++']
  524.         assemblers = ['as']
  525.         fortran_compilers = ['gfortran', 'f95', 'f90', 'g77']
  526.         ars = ['ar']
  527.     else:
  528.         "prefer GNU tools on all other platforms"
  529.         linkers = ['gnulink', 'mslink', 'ilink']
  530.         c_compilers = ['gcc', 'msvc', 'intelc', 'icc', 'cc']
  531.         cxx_compilers = ['g++', 'msvc', 'intelc', 'icc', 'c++']
  532.         assemblers = ['gas', 'nasm', 'masm']
  533.         fortran_compilers = ['gfortran', 'g77', 'ifort', 'ifl', 'f95', 'f90', 'f77']
  534.         ars = ['ar', 'mslib']
  535.     c_compiler = FindTool(c_compilers, env) or c_compilers[0]
  536.     # XXX this logic about what tool provides what should somehow be
  537.     #     moved into the tool files themselves.
  538.     if c_compiler and c_compiler == 'mingw':
  539.         # MinGW contains a linker, C compiler, C++ compiler,
  540.         # Fortran compiler, archiver and assembler:
  541.         cxx_compiler = None
  542.         linker = None
  543.         assembler = None
  544.         fortran_compiler = None
  545.         ar = None
  546.     else:
  547.         # Don't use g++ if the C compiler has built-in C++ support:
  548.         if c_compiler in ('msvc', 'intelc', 'icc'):
  549.             cxx_compiler = None
  550.         else:
  551.             cxx_compiler = FindTool(cxx_compilers, env) or cxx_compilers[0]
  552.         linker = FindTool(linkers, env) or linkers[0]
  553.         assembler = FindTool(assemblers, env) or assemblers[0]
  554.         fortran_compiler = FindTool(fortran_compilers, env) or fortran_compilers[0]
  555.         ar = FindTool(ars, env) or ars[0]
  556.     other_tools = FindAllTools(['BitKeeper', 'CVS',
  557.                                 'dmd',
  558.                                 'filesystem',
  559.                                 'dvipdf', 'dvips', 'gs',
  560.                                 'jar', 'javac', 'javah',
  561.                                 'latex', 'lex',
  562.                                 'm4', 'midl', 'msvs',
  563.                                 'pdflatex', 'pdftex', 'Perforce',
  564.                                 'RCS', 'rmic', 'rpcgen',
  565.                                 'SCCS',
  566.                                 # 'Subversion',
  567.                                 'swig',
  568.                                 'tar', 'tex',
  569.                                 'yacc', 'zip', 'rpm', 'wix'],
  570.                                env)
  571.     tools = ([linker, c_compiler, cxx_compiler,
  572.               fortran_compiler, assembler, ar]
  573.              + other_tools)
  574.     return filter(lambda x: x, tools)