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

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Tool.dmd
  2. Tool-specific initialization for the Digital Mars D compiler.
  3. (http://digitalmars.com/d)
  4. Coded by Andy Friesen (andy@ikagames.com)
  5. 15 November 2003
  6. There are a number of problems with this script at this point in time.
  7. The one that irritates me the most is the Windows linker setup.  The D
  8. linker doesn't have a way to add lib paths on the commandline, as far
  9. as I can see.  You have to specify paths relative to the SConscript or
  10. use absolute paths.  To hack around it, add '#/blah'.  This will link
  11. blah.lib from the directory where SConstruct resides.
  12. Compiler variables:
  13.     DC - The name of the D compiler to use.  Defaults to dmd or gdmd,
  14.     whichever is found.
  15.     DPATH - List of paths to search for import modules.
  16.     DVERSIONS - List of version tags to enable when compiling.
  17.     DDEBUG - List of debug tags to enable when compiling.
  18. Linker related variables:
  19.     LIBS - List of library files to link in.
  20.     DLINK - Name of the linker to use.  Defaults to dmd or gdmd.
  21.     DLINKFLAGS - List of linker flags.
  22. Lib tool variables:
  23.     DLIB - Name of the lib tool to use.  Defaults to lib.
  24.     DLIBFLAGS - List of flags to pass to the lib tool.
  25.     LIBS - Same as for the linker. (libraries to pull into the .lib)
  26. """
  27. #
  28. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  29. #
  30. # Permission is hereby granted, free of charge, to any person obtaining
  31. # a copy of this software and associated documentation files (the
  32. # "Software"), to deal in the Software without restriction, including
  33. # without limitation the rights to use, copy, modify, merge, publish,
  34. # distribute, sublicense, and/or sell copies of the Software, and to
  35. # permit persons to whom the Software is furnished to do so, subject to
  36. # the following conditions:
  37. #
  38. # The above copyright notice and this permission notice shall be included
  39. # in all copies or substantial portions of the Software.
  40. #
  41. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  42. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  43. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  44. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  45. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  46. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  47. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  48. #
  49. __revision__ = "src/engine/SCons/Tool/dmd.py 3057 2008/06/09 22:21:00 knight"
  50. import os
  51. import string
  52. import SCons.Action
  53. import SCons.Builder
  54. import SCons.Defaults
  55. import SCons.Scanner.D
  56. import SCons.Tool
  57. # Adapted from c++.py
  58. def isD(source):
  59.     if not source:
  60.         return 0
  61.     for s in source:
  62.         if s.sources:
  63.             ext = os.path.splitext(str(s.sources[0]))[1]
  64.             if ext == '.d':
  65.                 return 1
  66.     return 0
  67. smart_link = {}
  68. smart_lib = {}
  69. def generate(env):
  70.     global smart_link
  71.     global smart_lib
  72.     static_obj, shared_obj = SCons.Tool.createObjBuilders(env)
  73.     DAction = SCons.Action.Action('$DCOM', '$DCOMSTR')
  74.     static_obj.add_action('.d', DAction)
  75.     shared_obj.add_action('.d', DAction)
  76.     static_obj.add_emitter('.d', SCons.Defaults.StaticObjectEmitter)
  77.     shared_obj.add_emitter('.d', SCons.Defaults.SharedObjectEmitter)
  78.     dc = env.Detect(['dmd', 'gdmd'])
  79.     env['DC'] = dc
  80.     env['DCOM'] = '$DC $_DINCFLAGS $_DVERFLAGS $_DDEBUGFLAGS $_DFLAGS -c -of$TARGET $SOURCES'
  81.     env['_DINCFLAGS'] = '$( ${_concat(DINCPREFIX, DPATH, DINCSUFFIX, __env__, RDirs, TARGET, SOURCE)}  $)'
  82.     env['_DVERFLAGS'] = '$( ${_concat(DVERPREFIX, DVERSIONS, DVERSUFFIX, __env__)}  $)'
  83.     env['_DDEBUGFLAGS'] = '$( ${_concat(DDEBUGPREFIX, DDEBUG, DDEBUGSUFFIX, __env__)} $)'
  84.     env['_DFLAGS'] = '$( ${_concat(DFLAGPREFIX, DFLAGS, DFLAGSUFFIX, __env__)} $)'
  85.     env['DPATH'] = ['#/']
  86.     env['DFLAGS'] = []
  87.     env['DVERSIONS'] = []
  88.     env['DDEBUG'] = []
  89.     if dc:
  90.         # Add the path to the standard library.
  91.         # This is merely for the convenience of the dependency scanner.
  92.         dmd_path = env.WhereIs(dc)
  93.         if dmd_path:
  94.             x = string.rindex(dmd_path, dc)
  95.             phobosDir = dmd_path[:x] + '/../src/phobos'
  96.             if os.path.isdir(phobosDir):
  97.                 env.Append(DPATH = [phobosDir])
  98.     env['DINCPREFIX'] = '-I'
  99.     env['DINCSUFFIX'] = ''
  100.     env['DVERPREFIX'] = '-version='
  101.     env['DVERSUFFIX'] = ''
  102.     env['DDEBUGPREFIX'] = '-debug='
  103.     env['DDEBUGSUFFIX'] = ''
  104.     env['DFLAGPREFIX'] = '-'
  105.     env['DFLAGSUFFIX'] = ''
  106.     env['DFILESUFFIX'] = '.d'
  107.     # Need to use the Digital Mars linker/lib on windows.
  108.     # *nix can just use GNU link.
  109.     if env['PLATFORM'] == 'win32':
  110.         env['DLINK'] = '$DC'
  111.         env['DLINKCOM'] = '$DLINK -of$TARGET $SOURCES $DFLAGS $DLINKFLAGS $_DLINKLIBFLAGS'
  112.         env['DLIB'] = 'lib'
  113.         env['DLIBCOM'] = '$DLIB $_DLIBFLAGS -c $TARGET $SOURCES $_DLINKLIBFLAGS'
  114.         env['_DLINKLIBFLAGS'] = '$( ${_concat(DLIBLINKPREFIX, LIBS, DLIBLINKSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)'
  115.         env['_DLIBFLAGS'] = '$( ${_concat(DLIBFLAGPREFIX, DLIBFLAGS, DLIBFLAGSUFFIX, __env__)} $)'
  116.         env['DLINKFLAGS'] = []
  117.         env['DLIBLINKPREFIX'] = ''
  118.         env['DLIBLINKSUFFIX'] = '.lib'
  119.         env['DLIBFLAGPREFIX'] = '-'
  120.         env['DLIBFLAGSUFFIX'] = ''
  121.         env['DLINKFLAGPREFIX'] = '-'
  122.         env['DLINKFLAGSUFFIX'] = ''
  123.         SCons.Tool.createStaticLibBuilder(env)
  124.         # Basically, we hijack the link and ar builders with our own.
  125.         # these builders check for the presence of D source, and swap out
  126.         # the system's defaults for the Digital Mars tools.  If there's no D
  127.         # source, then we silently return the previous settings.
  128.         linkcom = env.get('LINKCOM')
  129.         try:
  130.             env['SMART_LINKCOM'] = smart_link[linkcom]
  131.         except KeyError:
  132.             def _smartLink(source, target, env, for_signature,
  133.                            defaultLinker=linkcom):
  134.                 if isD(source):
  135.                     # XXX I'm not sure how to add a $DLINKCOMSTR variable
  136.                     # so that it works with this _smartLink() logic,
  137.                     # and I don't have a D compiler/linker to try it out,
  138.                     # so we'll leave it alone for now.
  139.                     return '$DLINKCOM'
  140.                 else:
  141.                     return defaultLinker
  142.             env['SMART_LINKCOM'] = smart_link[linkcom] = _smartLink
  143.         arcom = env.get('ARCOM')
  144.         try:
  145.             env['SMART_ARCOM'] = smart_lib[arcom]
  146.         except KeyError:
  147.             def _smartLib(source, target, env, for_signature,
  148.                          defaultLib=arcom):
  149.                 if isD(source):
  150.                     # XXX I'm not sure how to add a $DLIBCOMSTR variable
  151.                     # so that it works with this _smartLib() logic, and
  152.                     # I don't have a D compiler/archiver to try it out,
  153.                     # so we'll leave it alone for now.
  154.                     return '$DLIBCOM'
  155.                 else:
  156.                     return defaultLib
  157.             env['SMART_ARCOM'] = smart_lib[arcom] = _smartLib
  158.         # It is worth noting that the final space in these strings is
  159.         # absolutely pivotal.  SCons sees these as actions and not generators
  160.         # if it is not there. (very bad)
  161.         env['ARCOM'] = '$SMART_ARCOM '
  162.         env['LINKCOM'] = '$SMART_LINKCOM '
  163.     else: # assuming linux
  164.         linkcom = env.get('LINKCOM')
  165.         try:
  166.             env['SMART_LINKCOM'] = smart_link[linkcom]
  167.         except KeyError:
  168.             def _smartLink(source, target, env, for_signature,
  169.                            defaultLinker=linkcom, dc=dc):
  170.                 if isD(source):
  171.                     try:
  172.                         libs = env['LIBS']
  173.                     except KeyError:
  174.                         libs = []
  175.                     if 'phobos' not in libs:
  176.                         if dc is 'dmd':
  177.                             env.Append(LIBS = ['phobos'])
  178.                         elif dc is 'gdmd':
  179.                             env.Append(LIBS = ['gphobos'])
  180.                     if 'pthread' not in libs:
  181.                         env.Append(LIBS = ['pthread'])
  182.                     if 'm' not in libs:
  183.                         env.Append(LIBS = ['m'])
  184.                 return defaultLinker
  185.             env['SMART_LINKCOM'] = smart_link[linkcom] = _smartLink
  186.         env['LINKCOM'] = '$SMART_LINKCOM '
  187. def exists(env):
  188.     return env.Detect(['dmd', 'gdmd'])