jdk/make/common/shared/Compiler-msvc.gmk
changeset 1776 33e9405ab91b
parent 715 f16baef3a20e
child 2158 68869a085470
equal deleted inserted replaced
1655:caf58ffa0845 1776:33e9405ab91b
    52   
    52   
    53   # SDK-64 and MSVC6 put REBASE.EXE in a different places - go figure...
    53   # SDK-64 and MSVC6 put REBASE.EXE in a different places - go figure...
    54   ifeq ($(ARCH_DATA_MODEL), 32)
    54   ifeq ($(ARCH_DATA_MODEL), 32)
    55     LINK_VER := $(shell $(LINK) | $(HEAD) -n 1 | $(NAWK) '{print $$6}')
    55     LINK_VER := $(shell $(LINK) | $(HEAD) -n 1 | $(NAWK) '{print $$6}')
    56     CC_MAJORVER :=$(call MajorVersion,$(CC_VER))
    56     CC_MAJORVER :=$(call MajorVersion,$(CC_VER))
    57     REQUIRED_CC_VER = 13.10.3077
       
    58     REQUIRED_LINK_VER = 7.10.3077
       
    59     ifeq ($(CC_MAJORVER), 12)
       
    60       # This should be: CC_VER=12.00.8168 LINK_VER=6.00.8447
       
    61       COMPILER_NAME=Visual C++ 6.0 Professional + VC6-SP 3
       
    62       COMPILER_VERSION=VC6
       
    63       REBASE     = $(COMPILER_PATH)rebase
       
    64       MTL        = $(COMPILER_PATH)midl
       
    65     endif
       
    66     ifeq ($(CC_MAJORVER), 13)
    57     ifeq ($(CC_MAJORVER), 13)
    67       # This should be: CC_VER=13.10.3077 LINK_VER=7.10.3077
    58       # This should be: CC_VER=13.10.3077 LINK_VER=7.10.3077
       
    59       REQUIRED_CC_VER = 13.10.3077
       
    60       REQUIRED_LINK_VER = 7.10.3077
    68       COMPILER_NAME=Visual Studio .NET 2003 Professional C++
    61       COMPILER_NAME=Visual Studio .NET 2003 Professional C++
    69       COMPILER_VERSION=VS2003
    62       COMPILER_VERSION=VS2003
    70       REBASE     = $(COMPILER_PATH)../../Common7/Tools/Bin/rebase
    63       REBASE     = $(COMPILER_PATH)../../Common7/Tools/Bin/rebase
    71       MTL        = $(COMPILER_PATH)../../Common7/Tools/Bin/midl
    64       MTL        = $(COMPILER_PATH)../../Common7/Tools/Bin/midl
    72       ifndef COMPILER_PATH
    65       ifndef COMPILER_PATH
    73 	COMPILER_PATH := $(error COMPILER_PATH cannot be empty here)
    66 	COMPILER_PATH := $(error COMPILER_PATH cannot be empty here)
    74       endif
    67       endif
    75     endif
    68     endif
    76     ifeq ($(CC_MAJORVER), 14)
    69     ifeq ($(CC_MAJORVER), 14)
    77       # This should be: CC_VER=14.00.0000 LINK_VER=8.00.0000
    70       # This should be: CC_VER=14.00.50727.42 LINK_VER=8.00.50727.42
    78       # NOTE: This compiler has not been tried yet on 32bit systems
    71       REQUIRED_CC_VER = 14.00.50727.42
    79       COMPILER_NAME=Visual Studio .NET 2005
    72       REQUIRED_LINK_VER = 8.00.50727.42
       
    73       COMPILER_NAME=Visual Studio 8
    80       COMPILER_VERSION=VS2005
    74       COMPILER_VERSION=VS2005
    81       REBASE     = $(COMPILER_PATH)../../Common8/Tools/Bin/rebase
    75       REBASE     = $(COMPILER_PATH)../../Common8/Tools/Bin/rebase
    82       MTL        = $(COMPILER_PATH)../../Common8/Tools/Bin/midl
    76       MTL        = $(COMPILER_PATH)../../Common8/Tools/Bin/midl
       
    77       MT         = $(MSDEVTOOLS_PATH)mt
       
    78       ifndef COMPILER_PATH
       
    79 	COMPILER_PATH := $(error COMPILER_PATH cannot be empty here)
       
    80       endif
       
    81     endif
       
    82     ifeq ($(CC_MAJORVER), 15)
       
    83       # This should be: CC_VER=15.00.21022.08 LINK_VER=9.00.21022.08
       
    84       REQUIRED_CC_VER = 15.00.21022.08
       
    85       REQUIRED_LINK_VER = 9.00.21022.08
       
    86       COMPILER_NAME=Visual Studio 9
       
    87       COMPILER_VERSION=VS2008
       
    88       #rebase and midl moved out of Visual Studio into the SDK:
       
    89       REBASE     = $(MSDEVTOOLS_PATH)/rebase
       
    90       MTL        = $(MSDEVTOOLS_PATH)/midl.exe
       
    91       MT         = $(MSDEVTOOLS_PATH)mt
    83       ifndef COMPILER_PATH
    92       ifndef COMPILER_PATH
    84 	COMPILER_PATH := $(error COMPILER_PATH cannot be empty here)
    93 	COMPILER_PATH := $(error COMPILER_PATH cannot be empty here)
    85       endif
    94       endif
    86     endif
    95     endif
    87   else
    96   else
       
    97     # else ARCH_DATA_MODEL is 64
    88     LINK_VER := $(shell $(LINK) | $(HEAD) -n 1 | $(NAWK) '{print $$6}')
    98     LINK_VER := $(shell $(LINK) | $(HEAD) -n 1 | $(NAWK) '{print $$6}')
    89     CC_MAJORVER :=$(call MajorVersion,$(CC_VER))
    99     CC_MAJORVER :=$(call MajorVersion,$(CC_VER))
    90     CC_MINORVER :=$(call MinorVersion,$(CC_VER))
   100     CC_MINORVER :=$(call MinorVersion,$(CC_VER))
    91     CC_MICROVER :=$(call MicroVersion,$(CC_VER))
   101     CC_MICROVER :=$(call MicroVersion,$(CC_VER))
    92     ifeq ($(ARCH), ia64)
   102     ifeq ($(ARCH), ia64)