Compiler-msvc.gmk 6.2 KB
Newer Older
D
duke 已提交
1
#
2
# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
7
# published by the Free Software Foundation.  Oracle designates this
D
duke 已提交
8
# particular file as subject to the "Classpath" exception as provided
9
# by Oracle in the LICENSE file that accompanied this code.
D
duke 已提交
10 11 12 13 14 15 16 17 18 19 20
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
21 22 23
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
D
duke 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37
#

#
# MSVC Compiler settings
#

ifeq ($(PLATFORM), windows)
  CC           = $(COMPILER_PATH)cl
  CPP          = $(COMPILER_PATH)cl
  CXX          = $(COMPILER_PATH)cl
  CCC          = $(COMPILER_PATH)cl
  LIBEXE       = $(COMPILER_PATH)lib
  LINK         = $(COMPILER_PATH)link
  LINK32       = $(LINK)
38
  DUMPBIN      = $(COMPILER_PATH)dumpbin.exe
D
duke 已提交
39 40 41 42 43 44 45 46
 
  # Fill in unknown values
  COMPILER_NAME=Unknown MSVC Compiler
  COMPILER_VERSION=
  
  # unset any GNU Make settings of MFLAGS and MAKEFLAGS which may mess up nmake
  NMAKE          = MFLAGS= MAKEFLAGS= $(COMPILER_PATH)nmake -nologo

47 48
  # Compiler version and type (Always get word after "Version")
  CC_VER  := $(shell $(CC) 2>&1 | $(HEAD) -n 1 | $(SED) 's/.*\(Version.*\)/\1/' | $(NAWK) '{print $$2}')
49 50 51 52

  # The MSDEVTOOLS_PATH is for older compilers, place for rc, mt, etc.
  _OTHER_TOOLS_PATH = $(MSDEVTOOLS_PATH)

D
duke 已提交
53 54 55 56 57 58 59 60
  # SDK-64 and MSVC6 put REBASE.EXE in a different places - go figure...
  ifeq ($(ARCH_DATA_MODEL), 32)
    LINK_VER := $(shell $(LINK) | $(HEAD) -n 1 | $(NAWK) '{print $$6}')
    CC_MAJORVER :=$(call MajorVersion,$(CC_VER))
    ifeq ($(CC_MAJORVER), 13)
      # This should be: CC_VER=13.10.3077 LINK_VER=7.10.3077
      COMPILER_NAME=Visual Studio .NET 2003 Professional C++
      COMPILER_VERSION=VS2003
61
      RC         = $(_OTHER_TOOLS_PATH)rc
D
duke 已提交
62 63 64 65
      REBASE     = $(COMPILER_PATH)../../Common7/Tools/Bin/rebase
      MTL        = $(COMPILER_PATH)../../Common7/Tools/Bin/midl
    endif
    ifeq ($(CC_MAJORVER), 14)
66
      COMPILER_NAME=Visual Studio 8
D
duke 已提交
67
      COMPILER_VERSION=VS2005
68
      RC         = $(_OTHER_TOOLS_PATH)rc
D
duke 已提交
69 70
      REBASE     = $(COMPILER_PATH)../../Common8/Tools/Bin/rebase
      MTL        = $(COMPILER_PATH)../../Common8/Tools/Bin/midl
71
      MT         = $(_OTHER_TOOLS_PATH)/mt
72 73 74 75
    endif
    ifeq ($(CC_MAJORVER), 15)
      COMPILER_NAME=Visual Studio 9
      COMPILER_VERSION=VS2008
76
      RC         = $(_OTHER_TOOLS_PATH)rc
77
      #rebase and midl moved out of Visual Studio into the SDK:
78 79 80
      REBASE     = $(_OTHER_TOOLS_PATH)/rebase
      MTL        = $(_OTHER_TOOLS_PATH)/midl.exe
      MT         = $(_OTHER_TOOLS_PATH)mt
81
    endif
D
duke 已提交
82
  else
83
    # else ARCH_DATA_MODEL is 64
D
duke 已提交
84 85 86 87 88 89 90 91 92
    LINK_VER := $(shell $(LINK) | $(HEAD) -n 1 | $(NAWK) '{print $$6}')
    CC_MAJORVER :=$(call MajorVersion,$(CC_VER))
    CC_MINORVER :=$(call MinorVersion,$(CC_VER))
    CC_MICROVER :=$(call MicroVersion,$(CC_VER))
    ifeq ($(CC_MAJORVER), 13)
      ifeq ($(ARCH), ia64)
        # This should be: CC_VER=13.00.9337.7 LINK_VER=7.00.9337.7
        COMPILER_NAME=Microsoft Platform SDK - November 2001 Edition
        COMPILER_VERSION=VS2003
93
        RC = $(_OTHER_TOOLS_PATH)rc
D
duke 已提交
94 95 96 97
      endif
    endif
    ifeq ($(CC_MAJORVER), 14)
      ifeq ($(ARCH), amd64)
98
        #rebase and midl moved out of Visual Studio into the SDK:
99 100 101
        RC         = $(_OTHER_TOOLS_PATH)/rc
        REBASE     = $(_OTHER_TOOLS_PATH)/rebase
        MTL        = $(_OTHER_TOOLS_PATH)/midl.exe
D
duke 已提交
102 103 104 105 106 107 108 109 110 111 112 113
        ifeq ($(CC_MICROVER), 30701)
          # This should be: CC_VER=14.00.30701 LINK_VER=8.00.30701
	  # WARNING: it says 14, but it is such an early build it doesn't
	  #          have all the VS2005 compiler option changes, so treat
	  #          this like a VS2003 compiler.
          COMPILER_NAME=Microsoft Platform SDK - February 2003 Edition
          COMPILER_VERSION=VS2003
        else
          # This should be: CC_VER=14.00.40310.41 LINK_VER=8.00.40310.39
	  COMPILER_NAME=Microsoft Platform SDK - April 2005 Edition (3790.1830)
          COMPILER_VERSION=VS2005
        endif
114 115
      else
        REBASE         = $(COMPILER_PATH)../rebase
D
duke 已提交
116 117
      endif
    endif
118 119 120 121 122
    ifeq ($(CC_MAJORVER), 15)
      COMPILER_NAME=Microsoft Windows SDK with Visual Studio 9 (6001.18000.367)
      COMPILER_VERSION=VS2008
      RC = $(MSSDK61)/Bin/X64/rc.exe
      MT = $(MSSDK61)/Bin/X64/mt.exe
123 124
      MTL = $(MSSDK61)/Bin/X64/midl.exe
    endif
125 126 127 128 129 130 131 132
  endif
  
  # The VS2010 compiler is the same one used on both 32bit and 64bit
  ifeq ($(CC_MAJORVER), 16)
    COMPILER_NAME=Microsoft Visual Studio 10 (16.00.30319.01)
    COMPILER_VERSION=VS2010
    ifeq ($(WINDOWSSDKDIR),)
      WINDOWSSDKDIR := $(error WINDOWSSDKDIR cannot be empty here)
133
    endif
134 135 136 137 138 139 140 141
    ifeq ($(ARCH_DATA_MODEL), 32)
      _OTHER_TOOLS_BIN = $(WINDOWSSDKDIR)/Bin
    else
      ifeq ($(ARCH), ia64)
        _OTHER_TOOLS_BIN = $(WINDOWSSDKDIR)/Bin/ia64
      else
        _OTHER_TOOLS_BIN = $(WINDOWSSDKDIR)/Bin/x64
      endif
D
duke 已提交
142
    endif
143 144
    RC     = $(_OTHER_TOOLS_BIN)/RC.Exe
    REBASE = $(_OTHER_TOOLS_BIN)/ReBase.Exe
145 146 147 148 149 150 151
    MT     = $(_OTHER_TOOLS_BIN)/mt.exe
    MTL    = $(_OTHER_TOOLS_BIN)/midl.exe
  endif
  
  # These variables can never be empty
  ifndef COMPILER_PATH
    COMPILER_PATH := $(error COMPILER_PATH cannot be empty here)
D
duke 已提交
152 153 154 155
  endif
  ifndef COMPILER_VERSION
    COMPILER_VERSION := $(error COMPILER_VERSION cannot be empty here)
  endif
156 157 158
  ifneq ($(COMPILER_VERSION),VS2010)
    COMPILER_VERSION := $(error COMPILER_VERSION must be VS2010)
  endif
159
  
D
duke 已提交
160 161
  # Shared library generation flag
  SHARED_LIBRARY_FLAG = -LD
162 163 164
  # RSC is always same as RC (Not sure who uses this RSC variable)
  RSC = $(RC)

D
duke 已提交
165 166
endif