1 #
   2 # Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.
   8 #
   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #
  23 #
  24 
  25 # Generic compiler settings
  26 !if "x$(CXX)" == "x"
  27 CXX=cl.exe
  28 !endif
  29 
  30 # CXX Flags: (these vary slightly from VC6->VS2003->VS2005 compilers)
  31 #   /nologo   Supress copyright message at every cl.exe startup
  32 #   /W3       Warning level 3
  33 #   /Zi       Include debugging information
  34 #   /d2Zi+    Extended debugging symbols for optimized code (/Zo in VS2013 Update 3 and later)
  35 #   /WX       Treat any warning error as a fatal error
  36 #   /MD       Use dynamic multi-threaded runtime (msvcrt.dll or msvc*NN.dll)
  37 #   /MTd      Use static multi-threaded runtime debug versions
  38 #   /O1       Optimize for size (/Os), skips /Oi
  39 #   /O2       Optimize for speed (/Ot), adds /Oi to /O1
  40 #   /Ox       Old "all optimizations flag" for VC6 (in /O1)
  41 #   /Oy       Use frame pointer register as GP reg (in /Ox and /O1)
  42 #   /GF       Merge string constants and put in read-only memory (in /O1)
  43 #   /Gy       Func level link (in /O1, allows for link-time func ordering)
  44 #   /Gs       Inserts stack probes (in /O1)
  45 #   /GS       Inserts security stack checks in some functions (VS2005 default)
  46 #   /Oi       Use intrinsics (in /O2)
  47 #   /Od       Disable all optimizations
  48 #   /MP       Use multiple cores for compilation
  49 #
  50 # NOTE: Normally following any of the above with a '-' will turn off that flag
  51 #
  52 # 6655385: For VS2003/2005 we now specify /Oy- (disable frame pointer
  53 # omission.)  This has little to no effect on performance while vastly
  54 # improving the quality of crash log stack traces involving jvm.dll.
  55 
  56 # These are always used in all compiles
  57 CXX_FLAGS=$(EXTRA_CFLAGS) /nologo /W3
  58 
  59 !if "$(WARNINGS_AS_ERRORS)" != "false"
  60 CXX_FLAGS=$(CXX_FLAGS) /WX
  61 !endif
  62 
  63 # Let's add debug information when Full Debug Symbols is enabled
  64 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
  65 CXX_FLAGS=$(CXX_FLAGS) /Zi /d2Zi+
  66 !endif
  67 
  68 # Based on BUILDARCH we add some flags and select the default compiler name
  69 !if "$(BUILDARCH)" == "ia64"
  70 MACHINE=IA64
  71 CXX_FLAGS=$(CXX_FLAGS) /D "CC_INTERP" /D "_LP64" /D "IA64"
  72 !endif
  73 
  74 !if "$(BUILDARCH)" == "amd64"
  75 MACHINE=AMD64
  76 CXX_FLAGS=$(CXX_FLAGS) /D "_LP64" /D "AMD64"
  77 LP64=1
  78 !endif
  79 
  80 !if "$(BUILDARCH)" == "i486"
  81 MACHINE=I386
  82 # VS2013 generates bad l2f without /arch:IA32
  83 CXX_FLAGS=$(CXX_FLAGS) /D "IA32" /arch:IA32
  84 !endif
  85 
  86 CXX_FLAGS=$(CXX_FLAGS) /D "WIN32" /D "_WINDOWS"
  87 # Must specify this for sharedRuntimeTrig.cpp
  88 CXX_FLAGS=$(CXX_FLAGS) /D "VM_LITTLE_ENDIAN"
  89 
  90 # Used for platform dispatching
  91 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_FAMILY_windows
  92 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_ARCH_$(Platform_arch)
  93 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_ARCH_MODEL_$(Platform_arch_model)
  94 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_ARCH_windows_$(Platform_arch)
  95 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_ARCH_MODEL_windows_$(Platform_arch_model)
  96 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_COMPILER_visCPP
  97 
  98 
  99 # MSC_VER is a 4 digit number that tells us what compiler is being used
 100 #    and is generated when the local.make file is created by build.make
 101 #    via the script get_msc_ver.sh
 102 #
 103 #    If MSC_VER is set, it overrides the above default setting.
 104 #    But it should be set.
 105 #    Possible values:
 106 #      1200 is for VC6
 107 #      1300 and 1310 is VS2003 or VC7
 108 #      1399 is our fake number for the VS2005 compiler that really isn't 1400
 109 #      1400 is for VS2005
 110 #      1500 is for VS2008
 111 #      1600 is for VS2010
 112 #      1700 is for VS2012
 113 #      1800 is for VS2013
 114 #    Do not confuse this MSC_VER with the predefined macro _MSC_VER that the
 115 #    compiler provides, when MSC_VER==1399, _MSC_VER will be 1400.
 116 #    Normally they are the same, but a pre-release of the VS2005 compilers
 117 #    in the Windows 64bit Platform SDK said it was 1400 when it was really
 118 #    closer to VS2003 in terms of option spellings, so we use 1399 for that
 119 #    1400 version that really isn't 1400.
 120 #    See the file get_msc_ver.sh for more info.
 121 
 122 # By default, we do not want to use the debug version of the msvcrt.dll file
 123 #   but if MFC_DEBUG is defined in the environment it will be used.
 124 MS_RUNTIME_OPTION = /MD
 125 !if "$(MFC_DEBUG)" == "true"
 126 MS_RUNTIME_OPTION = /MTd /D "_DEBUG"
 127 !endif
 128 
 129 # VS2012 and later won't work with:
 130 #     /D _STATIC_CPPLIB /D _DISABLE_DEPRECATE_STATIC_CPPLIB
 131 !if "$(MSC_VER)" < "1700"
 132 # Always add the _STATIC_CPPLIB flag
 133 STATIC_CPPLIB_OPTION = /D _STATIC_CPPLIB /D _DISABLE_DEPRECATE_STATIC_CPPLIB
 134 MS_RUNTIME_OPTION = $(MS_RUNTIME_OPTION) $(STATIC_CPPLIB_OPTION)
 135 !endif
 136 CXX_FLAGS=$(CXX_FLAGS) $(MS_RUNTIME_OPTION)
 137 
 138 PRODUCT_OPT_OPTION   = /O2 /Oy-
 139 FASTDEBUG_OPT_OPTION = /O2 /Oy-
 140 DEBUG_OPT_OPTION     = /Od
 141 GX_OPTION = /EHsc
 142 LD_FLAGS = /manifest $(LD_FLAGS)
 143 MP_FLAG = /MP
 144 # Manifest Tool - used in VS2005 and later to adjust manifests stored
 145 # as resources inside build artifacts.
 146 !if "x$(MT)" == "x"
 147 MT=mt.exe
 148 !endif
 149 !if "$(BUILDARCH)" == "i486"
 150 LD_FLAGS = /SAFESEH $(LD_FLAGS)
 151 !endif
 152 
 153 CXX_FLAGS = $(CXX_FLAGS) $(MP_FLAG)
 154 
 155 # If NO_OPTIMIZATIONS is defined in the environment, turn everything off
 156 !ifdef NO_OPTIMIZATIONS
 157 PRODUCT_OPT_OPTION   = $(DEBUG_OPT_OPTION)
 158 FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION)
 159 !endif
 160 
 161 # Generic linker settings
 162 !if "x$(LD)" == "x"
 163 LD=link.exe
 164 !endif
 165 LD_FLAGS= $(LD_FLAGS) kernel32.lib user32.lib gdi32.lib winspool.lib \
 166  comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
 167  uuid.lib Wsock32.lib winmm.lib version.lib /nologo /machine:$(MACHINE) /opt:REF \
 168  /opt:ICF,8
 169 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
 170 LD_FLAGS= $(LD_FLAGS) /map /debug
 171 !endif
 172 
 173 
 174 !if $(MSC_VER) >= 1600
 175 LD_FLAGS= $(LD_FLAGS) psapi.lib
 176 !endif
 177 
 178 # Resource compiler settings
 179 !if "x$(RC)" == "x"
 180 RC=rc.exe
 181 !endif
 182 RC_FLAGS=/D "HS_VER=$(HS_VER)" \
 183          /D "HS_DOTVER=$(HS_DOTVER)" \
 184          /D "HS_BUILD_ID=$(HS_BUILD_ID)" \
 185          /D "JDK_VER=$(JDK_VER)" \
 186          /D "JDK_DOTVER=$(JDK_DOTVER)" \
 187          /D "HS_COMPANY=$(HS_COMPANY)" \
 188          /D "HS_FILEDESC=$(HS_FILEDESC)" \
 189          /D "HS_COPYRIGHT=$(HS_COPYRIGHT)" \
 190          /D "HS_FNAME=$(HS_FNAME)" \
 191          /D "HS_INTERNAL_NAME=$(HS_INTERNAL_NAME)" \
 192          /D "HS_NAME=$(HS_NAME)"
 193 
 194 # Need this to match the CXX_FLAGS settings
 195 !if "$(MFC_DEBUG)" == "true"
 196 RC_FLAGS = $(RC_FLAGS) /D "_DEBUG"
 197 !endif