From: cournape Date: Thu, 19 Nov 2009 05:06:20 +0000 (+0000) Subject: ENH: add support for Itanium architecture. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6abdc243406c2670dcb5fd80a5863b090e0455eb;p=scons.git ENH: add support for Itanium architecture. git-svn-id: http://scons.tigris.org/svn/scons/trunk@4455 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/engine/SCons/Tool/MSCommon/vc.py b/src/engine/SCons/Tool/MSCommon/vc.py index 227d1ff8..4efa0a0f 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):