summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/engine/SCons/Tool/MSCommon/vc.py7
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):