Compiler-msvc.gmk 3.2 KB
Newer Older
D
duke 已提交
1
#
2
# Copyright (c) 2005, 2011, 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
#

#
# MSVC Compiler settings
#

ifeq ($(PLATFORM), windows)
31
ifndef CONFIGURE_BUILD
D
duke 已提交
32 33 34 35 36 37 38
  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)
39
  DUMPBIN      = $(COMPILER_PATH)dumpbin.exe
40

D
duke 已提交
41 42 43 44 45 46 47
  # 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

48 49
  # 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}')
50

51 52
  LINK_VER := $(shell $(LINK) | $(HEAD) -n 1 | $(NAWK) '{print $$6}')
  CC_MAJORVER :=$(call MajorVersion,$(CC_VER))
53 54 55 56 57 58 59
  
  # 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)
60
    endif
61 62 63 64 65 66 67 68
    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 已提交
69
    endif
70 71
    RC     = $(_OTHER_TOOLS_BIN)/RC.Exe
    REBASE = $(_OTHER_TOOLS_BIN)/ReBase.Exe
72 73 74 75 76 77 78
    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 已提交
79 80 81 82
  endif
  ifndef COMPILER_VERSION
    COMPILER_VERSION := $(error COMPILER_VERSION cannot be empty here)
  endif
83 84 85
  ifneq ($(COMPILER_VERSION),VS2010)
    COMPILER_VERSION := $(error COMPILER_VERSION must be VS2010)
  endif
86
  
D
duke 已提交
87 88
  # Shared library generation flag
  SHARED_LIBRARY_FLAG = -LD
89 90
  # RSC is always same as RC (Not sure who uses this RSC variable)
  RSC = $(RC)
91
endif 
D
duke 已提交
92 93
endif