diff options
| author | Remko Tronçon <git@el-tramo.be> | 2010-08-15 13:40:47 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2010-08-15 13:40:47 (GMT) | 
| commit | e3f01043d60e745620a63fb785dd0d4674ec9370 (patch) | |
| tree | 17079e963b5238f6537c36373e55206fb7428e97 | |
| parent | e3be830225afb9a6c16d39a76cc330464a9a3cd8 (diff) | |
| download | swift-e3f01043d60e745620a63fb785dd0d4674ec9370.zip swift-e3f01043d60e745620a63fb785dd0d4674ec9370.tar.bz2  | |
Fix SCons fallback from amd64->x86 on Windows.
| -rw-r--r-- | 3rdParty/SCons/scons-local-2.0.0.final.0/SCons/Tool/MSCommon/vc.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdParty/SCons/scons-local-2.0.0.final.0/SCons/Tool/MSCommon/vc.py b/3rdParty/SCons/scons-local-2.0.0.final.0/SCons/Tool/MSCommon/vc.py index f07f34c..bbdac1d 100644 --- a/3rdParty/SCons/scons-local-2.0.0.final.0/SCons/Tool/MSCommon/vc.py +++ b/3rdParty/SCons/scons-local-2.0.0.final.0/SCons/Tool/MSCommon/vc.py @@ -353,7 +353,7 @@ def msvc_find_valid_batch_script(env,version):      # The TARGET_ARCH is amd64 then also try 32 bits if there are no viable      # 64 bit tools installed      try_target_archs = [target_platform] -    if not req_target_platform and target_platform=='amd64': +    if target_platform=='amd64':          try_target_archs.append('x86')      d = None  | 
 Swift