Index: third_party/scons/scons-local/SCons/Tool/mslink.py |
=================================================================== |
--- third_party/scons/scons-local/SCons/Tool/mslink.py (revision 9094) |
+++ third_party/scons/scons-local/SCons/Tool/mslink.py (working copy) |
@@ -9,7 +9,7 @@ |
""" |
# |
-# Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation |
+# Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 The SCons Foundation |
# |
# Permission is hereby granted, free of charge, to any person obtaining |
# a copy of this software and associated documentation files (the |
@@ -31,7 +31,7 @@ |
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
# |
-__revision__ = "src/engine/SCons/Tool/mslink.py 3842 2008/12/20 22:59:52 scons" |
+__revision__ = "src/engine/SCons/Tool/mslink.py 3897 2009/01/13 06:45:54 scons" |
import os.path |
@@ -50,9 +50,9 @@ |
except (AttributeError, IndexError): |
return None |
-def windowsShlinkTargets(target, source, env, for_signature): |
+def _dllTargets(target, source, env, for_signature, paramtp): |
listCmd = [] |
- dll = env.FindIxes(target, 'SHLIBPREFIX', 'SHLIBSUFFIX') |
+ dll = env.FindIxes(target, '%sPREFIX' % paramtp, '%sSUFFIX' % paramtp) |
if dll: listCmd.append("/out:%s"%dll.get_string(for_signature)) |
implib = env.FindIxes(target, 'LIBPREFIX', 'LIBSUFFIX') |
@@ -60,12 +60,15 @@ |
return listCmd |
-def windowsShlinkSources(target, source, env, for_signature): |
+def _dllSources(target, source, env, for_signature, paramtp): |
listCmd = [] |
deffile = env.FindIxes(source, "WINDOWSDEFPREFIX", "WINDOWSDEFSUFFIX") |
for src in source: |
- if src == deffile: |
+ # Check explicitly for a non-None deffile so that the __cmp__ |
+ # method of the base SCons.Util.Proxy class used for some Node |
+ # proxies doesn't try to use a non-existent __dict__ attribute. |
+ if deffile and src == deffile: |
# Treat this source as a .def file. |
listCmd.append("/def:%s" % src.get_string(for_signature)) |
else: |
@@ -73,17 +76,32 @@ |
listCmd.append(src) |
return listCmd |
-def windowsLibEmitter(target, source, env): |
+def windowsShlinkTargets(target, source, env, for_signature): |
+ return _dllTargets(target, source, env, for_signature, 'SHLIB') |
+ |
+def windowsShlinkSources(target, source, env, for_signature): |
+ return _dllSources(target, source, env, for_signature, 'SHLIB') |
+ |
+def _windowsLdmodTargets(target, source, env, for_signature): |
+ """Get targets for loadable modules.""" |
+ return _dllTargets(target, source, env, for_signature, 'LDMODULE') |
+ |
+def _windowsLdmodSources(target, source, env, for_signature): |
+ """Get sources for loadable modules.""" |
+ return _dllSources(target, source, env, for_signature, 'LDMODULE') |
+ |
+def _dllEmitter(target, source, env, paramtp): |
+ """Common implementation of dll emitter.""" |
SCons.Tool.msvc.validate_vars(env) |
extratargets = [] |
extrasources = [] |
- dll = env.FindIxes(target, "SHLIBPREFIX", "SHLIBSUFFIX") |
+ dll = env.FindIxes(target, '%sPREFIX' % paramtp, '%sSUFFIX' % paramtp) |
no_import_lib = env.get('no_import_lib', 0) |
if not dll: |
- raise SCons.Errors.UserError, "A shared library should have exactly one target with the suffix: %s" % env.subst("$SHLIBSUFFIX") |
+ raise SCons.Errors.UserError, 'A shared library should have exactly one target with the suffix: %s' % env.subst('$%sSUFFIX' % paramtp) |
insert_def = env.subst("$WINDOWS_INSERT_DEF") |
if not insert_def in ['', '0', 0] and \ |
@@ -92,7 +110,7 @@ |
# append a def file to the list of sources |
extrasources.append( |
env.ReplaceIxes(dll, |
- "SHLIBPREFIX", "SHLIBSUFFIX", |
+ '%sPREFIX' % paramtp, '%sSUFFIX' % paramtp, |
"WINDOWSDEFPREFIX", "WINDOWSDEFSUFFIX")) |
version_num, suite = SCons.Tool.msvs.msvs_parse_version(env.get('MSVS_VERSION', '6.0')) |
@@ -100,7 +118,7 @@ |
# MSVC 8 automatically generates .manifest files that must be installed |
extratargets.append( |
env.ReplaceIxes(dll, |
- "SHLIBPREFIX", "SHLIBSUFFIX", |
+ '%sPREFIX' % paramtp, '%sSUFFIX' % paramtp, |
"WINDOWSSHLIBMANIFESTPREFIX", "WINDOWSSHLIBMANIFESTSUFFIX")) |
if env.has_key('PDB') and env['PDB']: |
@@ -113,16 +131,27 @@ |
# Append an import library to the list of targets. |
extratargets.append( |
env.ReplaceIxes(dll, |
- "SHLIBPREFIX", "SHLIBSUFFIX", |
+ '%sPREFIX' % paramtp, '%sSUFFIX' % paramtp, |
"LIBPREFIX", "LIBSUFFIX")) |
# and .exp file is created if there are exports from a DLL |
extratargets.append( |
env.ReplaceIxes(dll, |
- "SHLIBPREFIX", "SHLIBSUFFIX", |
+ '%sPREFIX' % paramtp, '%sSUFFIX' % paramtp, |
"WINDOWSEXPPREFIX", "WINDOWSEXPSUFFIX")) |
return (target+extratargets, source+extrasources) |
+def windowsLibEmitter(target, source, env): |
+ return _dllEmitter(target, source, env, 'SHLIB') |
+ |
+def ldmodEmitter(target, source, env): |
+ """Emitter for loadable modules. |
+ |
+ Loadable modules are identical to shared libraries on Windows, but building |
+ them is subject to different parameters (LDMODULE*). |
+ """ |
+ return _dllEmitter(target, source, env, 'LDMODULE') |
+ |
def prog_emitter(target, source, env): |
SCons.Tool.msvc.validate_vars(env) |
@@ -160,7 +189,9 @@ |
regServerAction = SCons.Action.Action("$REGSVRCOM", "$REGSVRCOMSTR") |
regServerCheck = SCons.Action.Action(RegServerFunc, None) |
shlibLinkAction = SCons.Action.Action('${TEMPFILE("$SHLINK $SHLINKFLAGS $_SHLINK_TARGETS $( $_LIBDIRFLAGS $) $_LIBFLAGS $_PDB $_SHLINK_SOURCES")}') |
-compositeLinkAction = shlibLinkAction + regServerCheck |
+compositeShLinkAction = shlibLinkAction + regServerCheck |
+ldmodLinkAction = SCons.Action.Action('${TEMPFILE("$LDMODULE $LDMODULEFLAGS $_LDMODULE_TARGETS $( $_LIBDIRFLAGS $) $_LIBFLAGS $_PDB $_LDMODULE_SOURCES")}') |
+compositeLdmodAction = ldmodLinkAction + regServerCheck |
def generate(env): |
"""Add Builders and construction variables for ar to an Environment.""" |
@@ -171,7 +202,7 @@ |
env['SHLINKFLAGS'] = SCons.Util.CLVar('$LINKFLAGS /dll') |
env['_SHLINK_TARGETS'] = windowsShlinkTargets |
env['_SHLINK_SOURCES'] = windowsShlinkSources |
- env['SHLINKCOM'] = compositeLinkAction |
+ env['SHLINKCOM'] = compositeShLinkAction |
env.Append(SHLIBEMITTER = [windowsLibEmitter]) |
env['LINK'] = 'link' |
env['LINKFLAGS'] = SCons.Util.CLVar('/nologo') |
@@ -221,19 +252,19 @@ |
except (SCons.Util.RegError, SCons.Errors.InternalError): |
pass |
- # For most platforms, a loadable module is the same as a shared |
- # library. Platforms which are different can override these, but |
- # setting them the same means that LoadableModule works everywhere. |
+ # Loadable modules are on Windows the same as shared libraries, but they |
+ # are subject to different build parameters (LDMODULE* variables). |
+ # Therefore LDMODULE* variables correspond as much as possible to |
+ # SHLINK*/SHLIB* ones. |
SCons.Tool.createLoadableModuleBuilder(env) |
env['LDMODULE'] = '$SHLINK' |
env['LDMODULEPREFIX'] = '$SHLIBPREFIX' |
env['LDMODULESUFFIX'] = '$SHLIBSUFFIX' |
env['LDMODULEFLAGS'] = '$SHLINKFLAGS' |
- # We can't use '$SHLINKCOM' here because that will stringify the |
- # action list on expansion, and will then try to execute expanded |
- # strings, with the upshot that it would try to execute RegServerFunc |
- # as a command. |
- env['LDMODULECOM'] = compositeLinkAction |
+ env['_LDMODULE_TARGETS'] = _windowsLdmodTargets |
+ env['_LDMODULE_SOURCES'] = _windowsLdmodSources |
+ env['LDMODULEEMITTER'] = [ldmodEmitter] |
+ env['LDMODULECOM'] = compositeLdmodAction |
def exists(env): |
platform = env.get('PLATFORM', '') |