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

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Tool.gcc
  2. Tool-specific initialization for MinGW (http://www.mingw.org/)
  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/mingw.py 3057 2008/06/09 22:21:00 knight"
  30. import os
  31. import os.path
  32. import string
  33. import SCons.Action
  34. import SCons.Builder
  35. import SCons.Defaults
  36. import SCons.Tool
  37. import SCons.Util
  38. # This is what we search for to find mingw:
  39. key_program = 'mingw32-gcc'
  40. def find(env):
  41.     # First search in the SCons path and then the OS path:
  42.     return env.WhereIs(key_program) or SCons.Util.WhereIs(key_program)
  43. def shlib_generator(target, source, env, for_signature):
  44.     cmd = SCons.Util.CLVar(['$SHLINK', '$SHLINKFLAGS']) 
  45.     dll = env.FindIxes(target, 'SHLIBPREFIX', 'SHLIBSUFFIX')
  46.     if dll: cmd.extend(['-o', dll])
  47.     cmd.extend(['$SOURCES', '$_LIBDIRFLAGS', '$_LIBFLAGS'])
  48.     implib = env.FindIxes(target, 'LIBPREFIX', 'LIBSUFFIX')
  49.     if implib: cmd.append('-Wl,--out-implib,'+implib.get_string(for_signature))
  50.     def_target = env.FindIxes(target, 'WINDOWSDEFPREFIX', 'WINDOWSDEFSUFFIX')
  51.     if def_target: cmd.append('-Wl,--output-def,'+def_target.get_string(for_signature))
  52.     return [cmd]
  53. def shlib_emitter(target, source, env):
  54.     dll = env.FindIxes(target, 'SHLIBPREFIX', 'SHLIBSUFFIX')
  55.     no_import_lib = env.get('no_import_lib', 0)
  56.     if not dll:
  57.         raise SCons.Errors.UserError, "A shared library should have exactly one target with the suffix: %s" % env.subst("$SHLIBSUFFIX")
  58.     
  59.     if not no_import_lib and 
  60.        not env.FindIxes(target, 'LIBPREFIX', 'LIBSUFFIX'):
  61.         # Append an import library to the list of targets.
  62.         target.append(env.ReplaceIxes(dll,  
  63.                                       'SHLIBPREFIX', 'SHLIBSUFFIX',
  64.                                       'LIBPREFIX', 'LIBSUFFIX'))
  65.     # Append a def file target if there isn't already a def file target
  66.     # or a def file source. There is no option to disable def file
  67.     # target emitting, because I can't figure out why someone would ever
  68.     # want to turn it off.
  69.     def_source = env.FindIxes(source, 'WINDOWSDEFPREFIX', 'WINDOWSDEFSUFFIX')
  70.     def_target = env.FindIxes(target, 'WINDOWSDEFPREFIX', 'WINDOWSDEFSUFFIX')
  71.     if not def_source and not def_target:
  72.         target.append(env.ReplaceIxes(dll,  
  73.                                       'SHLIBPREFIX', 'SHLIBSUFFIX',
  74.                                       'WINDOWSDEFPREFIX', 'WINDOWSDEFSUFFIX'))
  75.     
  76.     return (target, source)
  77.                          
  78. shlib_action = SCons.Action.Action(shlib_generator, generator=1)
  79. res_action = SCons.Action.Action('$RCCOM', '$RCCOMSTR')
  80. res_builder = SCons.Builder.Builder(action=res_action, suffix='.o',
  81.                                     source_scanner=SCons.Tool.SourceFileScanner)
  82. SCons.Tool.SourceFileScanner.add_scanner('.rc', SCons.Defaults.CScan)
  83. def generate(env):
  84.     mingw = find(env)
  85.     if mingw:
  86.         dir = os.path.dirname(mingw)
  87.         env.PrependENVPath('PATH', dir )
  88.         
  89.     # Most of mingw is the same as gcc and friends...
  90.     gnu_tools = ['gcc', 'g++', 'gnulink', 'ar', 'gas', 'm4']
  91.     for tool in gnu_tools:
  92.         SCons.Tool.Tool(tool)(env)
  93.     #... but a few things differ:
  94.     env['CC'] = 'gcc'
  95.     env['SHCCFLAGS'] = SCons.Util.CLVar('$CCFLAGS')
  96.     env['CXX'] = 'g++'
  97.     env['SHCXXFLAGS'] = SCons.Util.CLVar('$CXXFLAGS')
  98.     env['SHLINKFLAGS'] = SCons.Util.CLVar('$LINKFLAGS -shared')
  99.     env['SHLINKCOM']   = shlib_action
  100.     env['LDMODULECOM'] = shlib_action
  101.     env.Append(SHLIBEMITTER = [shlib_emitter])
  102.     env['AS'] = 'as'
  103.     env['WIN32DEFPREFIX']        = ''
  104.     env['WIN32DEFSUFFIX']        = '.def'
  105.     env['WINDOWSDEFPREFIX']      = '${WIN32DEFPREFIX}'
  106.     env['WINDOWSDEFSUFFIX']      = '${WIN32DEFSUFFIX}'
  107.     env['SHOBJSUFFIX'] = '.o'
  108.     env['STATIC_AND_SHARED_OBJECTS_ARE_THE_SAME'] = 1
  109.     env['RC'] = 'windres'
  110.     env['RCFLAGS'] = SCons.Util.CLVar('')
  111.     env['RCINCFLAGS'] = '$( ${_concat(RCINCPREFIX, CPPPATH, RCINCSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)'
  112.     env['RCINCPREFIX'] = '--include-dir '
  113.     env['RCINCSUFFIX'] = ''
  114.     env['RCCOM'] = '$RC $_CPPDEFFLAGS $RCINCFLAGS ${RCINCPREFIX} ${SOURCE.dir} $RCFLAGS -i $SOURCE -o $TARGET'
  115.     env['BUILDERS']['RES'] = res_builder
  116.     
  117.     # Some setting from the platform also have to be overridden:
  118.     env['OBJSUFFIX'] = '.o'
  119.     env['LIBPREFIX'] = 'lib'
  120.     env['LIBSUFFIX'] = '.a'
  121. def exists(env):
  122.     return find(env)