1 #
   2 # Copyright (c) 1997, 2013, 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 #   /WX       Treat any warning error as a fatal error
  35 #   /MD       Use dynamic multi-threaded runtime (msvcrt.dll or msvc*NN.dll)
  36 #   /MTd      Use static multi-threaded runtime debug versions
  37 #   /O1       Optimize for size (/Os), skips /Oi
  38 #   /O2       Optimize for speed (/Ot), adds /Oi to /O1
  39 #   /Ox       Old "all optimizations flag" for VC6 (in /O1)
  40 #   /Oy       Use frame pointer register as GP reg (in /Ox and /O1)
  41 #   /GF       Merge string constants and put in read-only memory (in /O1)
  42 #   /Gy       Func level link (in /O1, allows for link-time func ordering)
  43 #   /Gs       Inserts stack probes (in /O1)
  44 #   /GS       Inserts security stack checks in some functions (VS2005 default)
  45 #   /Oi       Use intrinsics (in /O2)
  46 #   /Od       Disable all optimizations
  47 #   /MP       Use multiple cores for compilation
  48 #
  49 # NOTE: Normally following any of the above with a '-' will turn off that flag
  50 #
  51 # 6655385: For VS2003/2005 we now specify /Oy- (disable frame pointer
  52 # omission.)  This has little to no effect on performance while vastly
  53 # improving the quality of crash log stack traces involving jvm.dll.
  54 
  55 # These are always used in all compiles
  56 CXX_FLAGS=$(EXTRA_CFLAGS) /nologo /W3 /WX
  57 
  58 # Let's add debug information when Full Debug Symbols is enabled
  59 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
  60 CXX_FLAGS=$(CXX_FLAGS) /Zi
  61 !endif
  62 
  63 # Based on BUILDARCH we add some flags and select the default compiler name
  64 !if "$(BUILDARCH)" == "ia64"
  65 MACHINE=IA64
  66 DEFAULT_COMPILER_NAME=VS2003
  67 CXX_FLAGS=$(CXX_FLAGS) /D "CC_INTERP" /D "_LP64" /D "IA64"
  68 !endif
  69 
  70 !if "$(BUILDARCH)" == "amd64"
  71 MACHINE=AMD64
  72 DEFAULT_COMPILER_NAME=VS2005
  73 CXX_FLAGS=$(CXX_FLAGS) /D "_LP64" /D "AMD64"
  74 LP64=1
  75 !endif
  76 
  77 !if "$(BUILDARCH)" == "i486"
  78 MACHINE=I386
  79 DEFAULT_COMPILER_NAME=VS2003
  80 # VS2013 generates bad l2f without /arch:IA32
  81 CXX_FLAGS=$(CXX_FLAGS) /D "IA32" /arch:IA32
  82 !endif
  83 
  84 # Sanity check, this is the default if not amd64, ia64, or i486
  85 !ifndef DEFAULT_COMPILER_NAME
  86 CXX=ARCH_ERROR
  87 !endif
  88 
  89 CXX_FLAGS=$(CXX_FLAGS) /D "WIN32" /D "_WINDOWS"
  90 # Must specify this for sharedRuntimeTrig.cpp
  91 CXX_FLAGS=$(CXX_FLAGS) /D "VM_LITTLE_ENDIAN"
  92 
  93 # Used for platform dispatching
  94 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_FAMILY_windows
  95 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_ARCH_$(Platform_arch)
  96 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_ARCH_MODEL_$(Platform_arch_model)
  97 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_ARCH_windows_$(Platform_arch)
  98 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_ARCH_MODEL_windows_$(Platform_arch_model)
  99 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_COMPILER_visCPP
 100 
 101 
 102 # MSC_VER is a 4 digit number that tells us what compiler is being used
 103 #    and is generated when the local.make file is created by build.make
 104 #    via the script get_msc_ver.sh
 105 #
 106 #    If MSC_VER is set, it overrides the above default setting.
 107 #    But it should be set.
 108 #    Possible values:
 109 #      1200 is for VC6
 110 #      1300 and 1310 is VS2003 or VC7
 111 #      1399 is our fake number for the VS2005 compiler that really isn't 1400
 112 #      1400 is for VS2005
 113 #      1500 is for VS2008
 114 #      1600 is for VS2010
 115 #      1700 is for VS2012
 116 #    Do not confuse this MSC_VER with the predefined macro _MSC_VER that the
 117 #    compiler provides, when MSC_VER==1399, _MSC_VER will be 1400.
 118 #    Normally they are the same, but a pre-release of the VS2005 compilers
 119 #    in the Windows 64bit Platform SDK said it was 1400 when it was really
 120 #    closer to VS2003 in terms of option spellings, so we use 1399 for that
 121 #    1400 version that really isn't 1400.
 122 #    See the file get_msc_ver.sh for more info.
 123 !if "x$(MSC_VER)" == "x"
 124 COMPILER_NAME=$(DEFAULT_COMPILER_NAME)
 125 !else
 126 !if "$(MSC_VER)" == "1200"
 127 COMPILER_NAME=VC6
 128 !endif
 129 !if "$(MSC_VER)" == "1300"
 130 COMPILER_NAME=VS2003
 131 !endif
 132 !if "$(MSC_VER)" == "1310"
 133 COMPILER_NAME=VS2003
 134 !endif
 135 !if "$(MSC_VER)" == "1399"
 136 # Compiler might say 1400, but if it's 14.00.30701, it isn't really VS2005
 137 COMPILER_NAME=VS2003
 138 !endif
 139 !if "$(MSC_VER)" == "1400"
 140 COMPILER_NAME=VS2005
 141 !endif
 142 !if "$(MSC_VER)" == "1500"
 143 COMPILER_NAME=VS2008
 144 !endif
 145 !if "$(MSC_VER)" == "1600"
 146 COMPILER_NAME=VS2010
 147 !endif
 148 !if "$(MSC_VER)" == "1700"
 149 COMPILER_NAME=VS2012
 150 !endif
 151 !if "$(MSC_VER)" == "1800"
 152 COMPILER_NAME=VS2013
 153 !endif
 154 !if "$(MSC_VER)" == "1900"
 155 COMPILER_NAME=VS2015
 156 !endif
 157 !if "$(MSC_VER)" == "1912"
 158 COMPILER_NAME=VS2017
 159 !endif
 160 !if "$(MSC_VER)" == "1913"
 161 COMPILER_NAME=VS2017
 162 !endif
 163 !if "$(MSC_VER)" == "1914"
 164 COMPILER_NAME=VS2017
 165 !endif
 166 !if "$(MSC_VER)" == "1915"
 167 COMPILER_NAME=VS2017
 168 !endif
 169 !if "$(MSC_VER)" == "1916"
 170 COMPILER_NAME=VS2017
 171 !endif
 172 !endif
 173 
 174 # By default, we do not want to use the debug version of the msvcrt.dll file
 175 #   but if MFC_DEBUG is defined in the environment it will be used.
 176 MS_RUNTIME_OPTION = /MD
 177 !if "$(MFC_DEBUG)" == "true"
 178 MS_RUNTIME_OPTION = /MTd /D "_DEBUG"
 179 !endif
 180 
 181 # VS2012 and later won't work with:
 182 #     /D _STATIC_CPPLIB /D _DISABLE_DEPRECATE_STATIC_CPPLIB
 183 !if "$(MSC_VER)" < "1700"
 184 # Always add the _STATIC_CPPLIB flag
 185 STATIC_CPPLIB_OPTION = /D _STATIC_CPPLIB /D _DISABLE_DEPRECATE_STATIC_CPPLIB
 186 MS_RUNTIME_OPTION = $(MS_RUNTIME_OPTION) $(STATIC_CPPLIB_OPTION)
 187 !endif
 188 CXX_FLAGS=$(CXX_FLAGS) $(MS_RUNTIME_OPTION)
 189 
 190 # How /GX option is spelled
 191 GX_OPTION = /GX
 192 
 193 # Optimization settings for various versions of the compilers and types of
 194 #    builds. Three basic sets of settings: product, fastdebug, and debug.
 195 #    These get added into CXX_FLAGS as needed by other makefiles.
 196 !if "$(COMPILER_NAME)" == "VC6"
 197 PRODUCT_OPT_OPTION   = /Ox /Os /Gy /GF
 198 FASTDEBUG_OPT_OPTION = /Ox /Os /Gy /GF
 199 DEBUG_OPT_OPTION     = /Od
 200 !endif
 201 
 202 !if "$(COMPILER_NAME)" == "VS2003"
 203 PRODUCT_OPT_OPTION   = /O2 /Oy-
 204 FASTDEBUG_OPT_OPTION = /O2 /Oy-
 205 DEBUG_OPT_OPTION     = /Od
 206 SAFESEH_FLAG = /SAFESEH
 207 !endif
 208 
 209 !if "$(COMPILER_NAME)" == "VS2005"
 210 PRODUCT_OPT_OPTION   = /O2 /Oy-
 211 FASTDEBUG_OPT_OPTION = /O2 /Oy-
 212 DEBUG_OPT_OPTION     = /Od
 213 GX_OPTION = /EHsc
 214 # This VS2005 compiler has /GS as a default and requires bufferoverflowU.lib 
 215 #    on the link command line, otherwise we get missing __security_check_cookie
 216 #    externals at link time. Even with /GS-, you need bufferoverflowU.lib.
 217 #    NOTE: Currently we decided to not use /GS-
 218 BUFFEROVERFLOWLIB = bufferoverflowU.lib
 219 LD_FLAGS = /manifest $(LD_FLAGS) $(BUFFEROVERFLOWLIB)
 220 # Manifest Tool - used in VS2005 and later to adjust manifests stored
 221 # as resources inside build artifacts.
 222 !if "x$(MT)" == "x"
 223 MT=mt.exe
 224 !endif
 225 SAFESEH_FLAG = /SAFESEH
 226 !endif
 227 
 228 !if "$(COMPILER_NAME)" == "VS2008"
 229 PRODUCT_OPT_OPTION   = /O2 /Oy-
 230 FASTDEBUG_OPT_OPTION = /O2 /Oy-
 231 DEBUG_OPT_OPTION     = /Od
 232 GX_OPTION = /EHsc
 233 LD_FLAGS = /manifest $(LD_FLAGS)
 234 MP_FLAG = /MP
 235 # Manifest Tool - used in VS2005 and later to adjust manifests stored
 236 # as resources inside build artifacts.
 237 !if "x$(MT)" == "x"
 238 MT=mt.exe
 239 !endif
 240 SAFESEH_FLAG = /SAFESEH
 241 !endif
 242 
 243 !if "$(COMPILER_NAME)" == "VS2010"
 244 PRODUCT_OPT_OPTION   = /O2 /Oy-
 245 FASTDEBUG_OPT_OPTION = /O2 /Oy-
 246 DEBUG_OPT_OPTION     = /Od
 247 GX_OPTION = /EHsc
 248 LD_FLAGS = /manifest $(LD_FLAGS)
 249 MP_FLAG = /MP
 250 # Manifest Tool - used in VS2005 and later to adjust manifests stored
 251 # as resources inside build artifacts.
 252 !if "x$(MT)" == "x"
 253 MT=mt.exe
 254 !endif
 255 !if "$(BUILDARCH)" == "i486"
 256 LD_FLAGS = /SAFESEH $(LD_FLAGS)
 257 !endif
 258 !endif
 259 
 260 !if "$(COMPILER_NAME)" == "VS2012"
 261 PRODUCT_OPT_OPTION   = /O2 /Oy-
 262 FASTDEBUG_OPT_OPTION = /O2 /Oy-
 263 DEBUG_OPT_OPTION     = /Od
 264 GX_OPTION = /EHsc
 265 LD_FLAGS = /manifest $(LD_FLAGS)
 266 MP_FLAG = /MP
 267 # Manifest Tool - used in VS2005 and later to adjust manifests stored
 268 # as resources inside build artifacts.
 269 !if "x$(MT)" == "x"
 270 MT=mt.exe
 271 !endif
 272 SAFESEH_FLAG = /SAFESEH
 273 !endif
 274 
 275 !if "$(COMPILER_NAME)" == "VS2013"
 276 PRODUCT_OPT_OPTION   = /O2 /Oy-
 277 FASTDEBUG_OPT_OPTION = /O2 /Oy-
 278 DEBUG_OPT_OPTION     = /Od
 279 GX_OPTION = /EHsc
 280 LD_FLAGS = /manifest $(LD_FLAGS)
 281 MP_FLAG = /MP
 282 # Manifest Tool - used in VS2005 and later to adjust manifests stored
 283 # as resources inside build artifacts.
 284 !if "x$(MT)" == "x"
 285 MT=mt.exe
 286 !endif
 287 SAFESEH_FLAG = /SAFESEH
 288 !endif
 289 
 290 
 291 !if "$(COMPILER_NAME)" == "VS2015"
 292 PRODUCT_OPT_OPTION   = /O2 /Oy-
 293 FASTDEBUG_OPT_OPTION = /O2 /Oy-
 294 DEBUG_OPT_OPTION     = /Od
 295 GX_OPTION = /EHsc
 296 LD_FLAGS = /manifest $(LD_FLAGS)
 297 MP_FLAG = /MP
 298 # Manifest Tool - used in VS2005 and later to adjust manifests stored
 299 # as resources inside build artifacts.
 300 !if "x$(MT)" == "x"
 301 MT=mt.exe
 302 !endif
 303 SAFESEH_FLAG = /SAFESEH
 304 !endif
 305 
 306 !if "$(COMPILER_NAME)" == "VS2017"
 307 PRODUCT_OPT_OPTION   = /O2 /Oy-
 308 FASTDEBUG_OPT_OPTION = /O2 /Oy-
 309 DEBUG_OPT_OPTION     = /Od
 310 GX_OPTION = /EHsc
 311 LD_FLAGS = /manifest $(LD_FLAGS)
 312 MP_FLAG = /MP
 313 # Manifest Tool - used in VS2005 and later to adjust manifests stored
 314 # as resources inside build artifacts.
 315 !if "x$(MT)" == "x"
 316 MT=mt.exe
 317 !endif
 318 SAFESEH_FLAG = /SAFESEH
 319 !endif
 320 
 321 !if "$(BUILDARCH)" == "i486"
 322 LD_FLAGS = $(SAFESEH_FLAG) $(LD_FLAGS)
 323 !endif
 324 
 325 CXX_FLAGS = $(CXX_FLAGS) $(MP_FLAG)
 326 
 327 !if "$(ENABLE_JFR)" == "true"
 328 INCLUDE_JFR=1
 329 !else
 330 INCLUDE_JFR=0
 331 !endif
 332 CXX_FLAGS=$(CXX_FLAGS) /D INCLUDE_JFR=$(INCLUDE_JFR)
 333 
 334 # If NO_OPTIMIZATIONS is defined in the environment, turn everything off
 335 !ifdef NO_OPTIMIZATIONS
 336 PRODUCT_OPT_OPTION   = $(DEBUG_OPT_OPTION)
 337 FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION)
 338 !endif
 339 
 340 # Generic linker settings
 341 !if "x$(LD)" == "x"
 342 LD=link.exe
 343 !endif
 344 LD_FLAGS= $(LD_FLAGS) kernel32.lib user32.lib gdi32.lib winspool.lib \
 345  comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
 346  uuid.lib Wsock32.lib winmm.lib version.lib /nologo /machine:$(MACHINE) /opt:REF \
 347  /opt:ICF,8
 348 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
 349 LD_FLAGS= $(LD_FLAGS) /map /debug
 350 !endif
 351 
 352 
 353 !if $(MSC_VER) >= 1600 
 354 LD_FLAGS= $(LD_FLAGS) psapi.lib
 355 !endif
 356 
 357 # Resource compiler settings
 358 !if "x$(RC)" == "x"
 359 RC=rc.exe
 360 !endif
 361 RC_FLAGS=/D "HS_VER=$(HS_VER)" \
 362          /D "HS_DOTVER=$(HS_DOTVER)" \
 363          /D "HS_BUILD_ID=$(HS_BUILD_ID)" \
 364          /D "JDK_VER=$(JDK_VER)" \
 365          /D "JDK_DOTVER=$(JDK_DOTVER)" \
 366          /D "HS_COMPANY=$(COMPANY_NAME)" \
 367          /D "HS_FILEDESC=$(HS_FILEDESC)" \
 368          /D "HS_COPYRIGHT=$(HS_COPYRIGHT)" \
 369          /D "HS_FNAME=$(HS_FNAME)" \
 370          /D "HS_INTERNAL_NAME=$(HS_INTERNAL_NAME)" \
 371          /D "HS_NAME=$(HS_NAME)"
 372 
 373 # Need this to match the CXX_FLAGS settings
 374 !if "$(MFC_DEBUG)" == "true"
 375 RC_FLAGS = $(RC_FLAGS) /D "_DEBUG"
 376 !endif