diff options
| author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2019-07-24 09:57:09 +0200 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2019-07-24 09:57:09 +0200 | 
| commit | c7665433b2004d2b404d6fb9d6fd064998486f63 (patch) | |
| tree | 8525ef6d24f7c6ceb238945ebb2cc997c7afc905 /src/engine/SCons/Tool/mslink.py | |
| parent | e48d2727885efda8369c7edbc2e3929a59532adc (diff) | |
| parent | 6e228c305122f0564eda1e67d56651f8386d24d7 (diff) | |
Merge branch 'release/debian/3.1.0+repack-1'debian/3.1.0+repack-1
Diffstat (limited to 'src/engine/SCons/Tool/mslink.py')
| -rw-r--r-- | src/engine/SCons/Tool/mslink.py | 19 | 
1 files changed, 13 insertions, 6 deletions
diff --git a/src/engine/SCons/Tool/mslink.py b/src/engine/SCons/Tool/mslink.py index 1b16b63..9fbce4b 100644 --- a/src/engine/SCons/Tool/mslink.py +++ b/src/engine/SCons/Tool/mslink.py @@ -9,7 +9,7 @@ selection method.  """  # -# Copyright (c) 2001 - 2017 The SCons Foundation +# Copyright (c) 2001 - 2019 The SCons Foundation  #  # Permission is hereby granted, free of charge, to any person obtaining  # a copy of this software and associated documentation files (the @@ -32,8 +32,9 @@ selection method.  #  from __future__ import print_function -__revision__ = "src/engine/SCons/Tool/mslink.py rel_3.0.0:4395:8972f6a2f699 2017/09/18 12:59:24 bdbaddog" +__revision__ = "src/engine/SCons/Tool/mslink.py e724ae812eb96f4858a132f5b8c769724744faf6 2019-07-21 00:04:47 bdeegan" +import os  import os.path  import SCons.Action @@ -107,7 +108,7 @@ def _dllEmitter(target, source, env, paramtp):          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 \ +    if insert_def not in ['', '0', 0] and \         not env.FindIxes(source, "WINDOWSDEFPREFIX", "WINDOWSDEFSUFFIX"):          # append a def file to the list of sources @@ -158,7 +159,7 @@ def windowsLibEmitter(target, source, env):  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*).      """ @@ -219,7 +220,7 @@ def embedManifestDllCheck(target, source, env):      if env.get('WINDOWS_EMBED_MANIFEST', 0):          manifestSrc = target[0].get_abspath() + '.manifest'          if os.path.exists(manifestSrc): -            ret = (embedManifestDllAction) ([target[0]],None,env)         +            ret = (embedManifestDllAction) ([target[0]],None,env)              if ret:                  raise SCons.Errors.UserError("Unable to embed manifest into %s" % (target[0]))              return ret @@ -327,8 +328,14 @@ def generate(env):      env['LDMODULEEMITTER'] = [ldmodEmitter]      env['LDMODULECOM'] = compositeLdmodAction +    # Issue #3350 +    # Change tempfile argument joining character from a space to a newline +    # mslink will fail if any single line is too long, but is fine with many lines +    # in a tempfile +    env['TEMPFILEARGJOIN'] = os.linesep +  def exists(env): -    return msvc_exists() +    return msvc_exists(env)  # Local Variables:  # tab-width:4  | 
