summaryrefslogtreecommitdiff
path: root/solenv/inc/tg_compv.mk
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-01-16 20:53:17 +0200
committerTor Lillqvist <tlillqvist@novell.com>2011-01-16 20:57:11 +0200
commit086ce69a835841c36d264d3ea92e8350100f23bb (patch)
treee600dd3db07f08e4eb5cac45ace9d291f1907759 /solenv/inc/tg_compv.mk
parentbc04a7600c5057957ed8805f1c9b7d14811e3e72 (diff)
Cleanups and improvements on the nascent support for 64-bit Windows build
* solenc/inc/settings.mk: Drop MSVC 2003 section. * solenc/inc/tg_compv.mk: Set COMNAME appropriately for 64-bit build. * solenc/inc/wnt.mk: Drop unsupported compiler version sections. * solenc/inc/wntmsci11.mk: Look for the CL_X64 make variable, not cl_x64. Drop duplicate definitions already put in the environment by set_soenv.in.
Diffstat (limited to 'solenv/inc/tg_compv.mk')
-rw-r--r--solenv/inc/tg_compv.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/solenv/inc/tg_compv.mk b/solenv/inc/tg_compv.mk
index c68ae5af430e..a9fc9202ea2c 100644
--- a/solenv/inc/tg_compv.mk
+++ b/solenv/inc/tg_compv.mk
@@ -68,9 +68,11 @@ CCVER:=$(shell @-$(CXX) $(CFLAGSVERSION_CMD))
CCNUMVER:=$(shell @-$(CXX) $(CFLAGSNUMVERSION_CMD))
.IF "$(COM)"=="MSC"
-.IF "$(CCNUMVER)">="001200000000"
COMID=MSC
+.IF "$(CPU)"=="I"
COMNAME=msci
+.ELSE
+COMNAME=mscx
.ENDIF
.ENDIF