diff options
author | David Cournapeau <cournape@gmail.com> | 2009-11-19 05:06:20 (GMT) |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-11-19 05:06:20 (GMT) |
commit | f0b70ec2d166a7a1d4dd3f5379382e9a146e7ba9 (patch) | |
tree | b90cf63ff9a787eb28894029cf64238f2dbe367f /src | |
parent | 6c90fa628f9b28e6eba69edf23df9fe2089a5810 (diff) | |
download | SCons-f0b70ec2d166a7a1d4dd3f5379382e9a146e7ba9.zip SCons-f0b70ec2d166a7a1d4dd3f5379382e9a146e7ba9.tar.gz SCons-f0b70ec2d166a7a1d4dd3f5379382e9a146e7ba9.tar.bz2 |
ENH: add support for Itanium architecture.
Diffstat (limited to 'src')
-rw-r--r-- | src/engine/SCons/Tool/MSCommon/vc.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/engine/SCons/Tool/MSCommon/vc.py b/src/engine/SCons/Tool/MSCommon/vc.py index 227d1ff..4efa0a0 100644 --- a/src/engine/SCons/Tool/MSCommon/vc.py +++ b/src/engine/SCons/Tool/MSCommon/vc.py @@ -65,7 +65,9 @@ _ARCH_TO_CANONICAL = { "amd64": "amd64", "i386": "x86", "emt64": "amd64", - "x86_64": "amd64" + "x86_64": "amd64", + "itanium": "ia64", + "ia64": "ia64", } # Given a (host, target) tuple, return the argument for the bat file. Both host @@ -74,7 +76,8 @@ _HOST_TARGET_ARCH_TO_BAT_ARCH = { ("x86", "x86"): "x86", ("x86", "amd64"): "x86_amd64", ("amd64", "amd64"): "amd64", - ("amd64", "x86"): "x86" + ("amd64", "x86"): "x86", + ("x86", "ia64"): "x86_ia64" } def get_host_target(env): |