make/windows/makefiles/compile.make

Mon, 15 Jul 2013 23:23:15 -0400

author
dholmes
date
Mon, 15 Jul 2013 23:23:15 -0400
changeset 5417
33c52908bcdb
parent 5046
0380df7c3cd0
child 5842
febab3a8f203
child 5877
7638e35cabc6
permissions
-rw-r--r--

8015759: hotspot changes needed to compile with Visual Studio 2012
Reviewed-by: anthony, dholmes, dcubed
Contributed-by: Tim Bell <timothy.bell@oracle.com>

     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 #
    25 # Generic compiler settings
    26 !if "x$(CXX)" == "x"
    27 CXX=cl.exe
    28 !endif
    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 #
    48 # NOTE: Normally following any of the above with a '-' will turn off that flag
    49 #
    50 # 6655385: For VS2003/2005 we now specify /Oy- (disable frame pointer
    51 # omission.)  This has little to no effect on performance while vastly
    52 # improving the quality of crash log stack traces involving jvm.dll.
    54 # These are always used in all compiles
    55 CXX_FLAGS=$(EXTRA_CFLAGS) /nologo /W3 /WX
    57 # Let's add debug information when Full Debug Symbols is enabled
    58 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
    59 CXX_FLAGS=$(CXX_FLAGS) /Zi
    60 !endif
    62 # Based on BUILDARCH we add some flags and select the default compiler name
    63 !if "$(BUILDARCH)" == "ia64"
    64 MACHINE=IA64
    65 DEFAULT_COMPILER_NAME=VS2003
    66 CXX_FLAGS=$(CXX_FLAGS) /D "CC_INTERP" /D "_LP64" /D "IA64"
    67 !endif
    69 !if "$(BUILDARCH)" == "amd64"
    70 MACHINE=AMD64
    71 DEFAULT_COMPILER_NAME=VS2005
    72 CXX_FLAGS=$(CXX_FLAGS) /D "_LP64" /D "AMD64"
    73 LP64=1
    74 !endif
    76 !if "$(BUILDARCH)" == "i486"
    77 MACHINE=I386
    78 DEFAULT_COMPILER_NAME=VS2003
    79 CXX_FLAGS=$(CXX_FLAGS) /D "IA32"
    80 !endif
    82 # Sanity check, this is the default if not amd64, ia64, or i486
    83 !ifndef DEFAULT_COMPILER_NAME
    84 CXX=ARCH_ERROR
    85 !endif
    87 CXX_FLAGS=$(CXX_FLAGS) /D "WIN32" /D "_WINDOWS"
    88 # Must specify this for sharedRuntimeTrig.cpp
    89 CXX_FLAGS=$(CXX_FLAGS) /D "VM_LITTLE_ENDIAN"
    91 # Used for platform dispatching
    92 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_FAMILY_windows
    93 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_ARCH_$(Platform_arch)
    94 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_ARCH_MODEL_$(Platform_arch_model)
    95 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_ARCH_windows_$(Platform_arch)
    96 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_ARCH_MODEL_windows_$(Platform_arch_model)
    97 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_COMPILER_visCPP
   100 # MSC_VER is a 4 digit number that tells us what compiler is being used
   101 #    and is generated when the local.make file is created by build.make
   102 #    via the script get_msc_ver.sh
   103 #
   104 #    If MSC_VER is set, it overrides the above default setting.
   105 #    But it should be set.
   106 #    Possible values:
   107 #      1200 is for VC6
   108 #      1300 and 1310 is VS2003 or VC7
   109 #      1399 is our fake number for the VS2005 compiler that really isn't 1400
   110 #      1400 is for VS2005
   111 #      1500 is for VS2008
   112 #      1600 is for VS2010
   113 #      1700 is for VS2012
   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 !if "x$(MSC_VER)" == "x"
   122 COMPILER_NAME=$(DEFAULT_COMPILER_NAME)
   123 !else
   124 !if "$(MSC_VER)" == "1200"
   125 COMPILER_NAME=VC6
   126 !endif
   127 !if "$(MSC_VER)" == "1300"
   128 COMPILER_NAME=VS2003
   129 !endif
   130 !if "$(MSC_VER)" == "1310"
   131 COMPILER_NAME=VS2003
   132 !endif
   133 !if "$(MSC_VER)" == "1399"
   134 # Compiler might say 1400, but if it's 14.00.30701, it isn't really VS2005
   135 COMPILER_NAME=VS2003
   136 !endif
   137 !if "$(MSC_VER)" == "1400"
   138 COMPILER_NAME=VS2005
   139 !endif
   140 !if "$(MSC_VER)" == "1500"
   141 COMPILER_NAME=VS2008
   142 !endif
   143 !if "$(MSC_VER)" == "1600"
   144 COMPILER_NAME=VS2010
   145 !endif
   146 !if "$(MSC_VER)" == "1700"
   147 COMPILER_NAME=VS2012
   148 !endif
   149 !endif
   151 # By default, we do not want to use the debug version of the msvcrt.dll file
   152 #   but if MFC_DEBUG is defined in the environment it will be used.
   153 MS_RUNTIME_OPTION = /MD
   154 !if "$(MFC_DEBUG)" == "true"
   155 MS_RUNTIME_OPTION = /MTd /D "_DEBUG"
   156 !endif
   158 # VS2012 and later won't work with:
   159 #     /D _STATIC_CPPLIB /D _DISABLE_DEPRECATE_STATIC_CPPLIB
   160 !if "$(MSC_VER)" < "1700"
   161 # Always add the _STATIC_CPPLIB flag
   162 STATIC_CPPLIB_OPTION = /D _STATIC_CPPLIB /D _DISABLE_DEPRECATE_STATIC_CPPLIB
   163 MS_RUNTIME_OPTION = $(MS_RUNTIME_OPTION) $(STATIC_CPPLIB_OPTION)
   164 !endif
   165 CXX_FLAGS=$(CXX_FLAGS) $(MS_RUNTIME_OPTION)
   167 # How /GX option is spelled
   168 GX_OPTION = /GX
   170 # Optimization settings for various versions of the compilers and types of
   171 #    builds. Three basic sets of settings: product, fastdebug, and debug.
   172 #    These get added into CXX_FLAGS as needed by other makefiles.
   173 !if "$(COMPILER_NAME)" == "VC6"
   174 PRODUCT_OPT_OPTION   = /Ox /Os /Gy /GF
   175 FASTDEBUG_OPT_OPTION = /Ox /Os /Gy /GF
   176 DEBUG_OPT_OPTION     = /Od
   177 !endif
   179 !if "$(COMPILER_NAME)" == "VS2003"
   180 PRODUCT_OPT_OPTION   = /O2 /Oy-
   181 FASTDEBUG_OPT_OPTION = /O2 /Oy-
   182 DEBUG_OPT_OPTION     = /Od
   183 !endif
   185 !if "$(COMPILER_NAME)" == "VS2005"
   186 PRODUCT_OPT_OPTION   = /O2 /Oy-
   187 FASTDEBUG_OPT_OPTION = /O2 /Oy-
   188 DEBUG_OPT_OPTION     = /Od
   189 GX_OPTION = /EHsc
   190 # This VS2005 compiler has /GS as a default and requires bufferoverflowU.lib 
   191 #    on the link command line, otherwise we get missing __security_check_cookie
   192 #    externals at link time. Even with /GS-, you need bufferoverflowU.lib.
   193 #    NOTE: Currently we decided to not use /GS-
   194 BUFFEROVERFLOWLIB = bufferoverflowU.lib
   195 LD_FLAGS = /manifest $(LD_FLAGS) $(BUFFEROVERFLOWLIB)
   196 # Manifest Tool - used in VS2005 and later to adjust manifests stored
   197 # as resources inside build artifacts.
   198 !if "x$(MT)" == "x"
   199 MT=mt.exe
   200 !endif
   201 !endif
   203 !if "$(COMPILER_NAME)" == "VS2008"
   204 PRODUCT_OPT_OPTION   = /O2 /Oy-
   205 FASTDEBUG_OPT_OPTION = /O2 /Oy-
   206 DEBUG_OPT_OPTION     = /Od
   207 GX_OPTION = /EHsc
   208 LD_FLAGS = /manifest $(LD_FLAGS)
   209 # Manifest Tool - used in VS2005 and later to adjust manifests stored
   210 # as resources inside build artifacts.
   211 !if "x$(MT)" == "x"
   212 MT=mt.exe
   213 !endif
   214 !endif
   216 !if "$(COMPILER_NAME)" == "VS2010"
   217 PRODUCT_OPT_OPTION   = /O2 /Oy-
   218 FASTDEBUG_OPT_OPTION = /O2 /Oy-
   219 DEBUG_OPT_OPTION     = /Od
   220 GX_OPTION = /EHsc
   221 LD_FLAGS = /manifest $(LD_FLAGS)
   222 # Manifest Tool - used in VS2005 and later to adjust manifests stored
   223 # as resources inside build artifacts.
   224 !if "x$(MT)" == "x"
   225 MT=mt.exe
   226 !endif
   227 !if "$(BUILDARCH)" == "i486"
   228 LD_FLAGS = /SAFESEH $(LD_FLAGS)
   229 !endif
   230 !endif
   232 !if "$(COMPILER_NAME)" == "VS2012"
   233 PRODUCT_OPT_OPTION   = /O2 /Oy-
   234 FASTDEBUG_OPT_OPTION = /O2 /Oy-
   235 DEBUG_OPT_OPTION     = /Od
   236 GX_OPTION = /EHsc
   237 LD_FLAGS = /manifest $(LD_FLAGS)
   238 # Manifest Tool - used in VS2005 and later to adjust manifests stored
   239 # as resources inside build artifacts.
   240 !if "x$(MT)" == "x"
   241 MT=mt.exe
   242 !endif
   243 !if "$(BUILDARCH)" == "i486"
   244 LD_FLAGS = /SAFESEH $(LD_FLAGS)
   245 !endif
   246 !endif
   248 # If NO_OPTIMIZATIONS is defined in the environment, turn everything off
   249 !ifdef NO_OPTIMIZATIONS
   250 PRODUCT_OPT_OPTION   = $(DEBUG_OPT_OPTION)
   251 FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION)
   252 !endif
   254 # Generic linker settings
   255 !if "x$(LD)" == "x"
   256 LD=link.exe
   257 !endif
   258 LD_FLAGS= $(LD_FLAGS) kernel32.lib user32.lib gdi32.lib winspool.lib \
   259  comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
   260  uuid.lib Wsock32.lib winmm.lib /nologo /machine:$(MACHINE) /opt:REF \
   261  /opt:ICF,8
   262 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
   263 LD_FLAGS= $(LD_FLAGS) /map /debug
   264 !endif
   267 !if $(MSC_VER) >= 1600 
   268 LD_FLAGS= $(LD_FLAGS) psapi.lib
   269 !endif
   271 # Resource compiler settings
   272 !if "x$(RC)" == "x"
   273 RC=rc.exe
   274 !endif
   275 RC_FLAGS=/D "HS_VER=$(HS_VER)" \
   276 	 /D "HS_DOTVER=$(HS_DOTVER)" \
   277 	 /D "HS_BUILD_ID=$(HS_BUILD_ID)" \
   278 	 /D "JDK_VER=$(JDK_VER)" \
   279 	 /D "JDK_DOTVER=$(JDK_DOTVER)" \
   280 	 /D "HS_COMPANY=$(HS_COMPANY)" \
   281 	 /D "HS_FILEDESC=$(HS_FILEDESC)" \
   282 	 /D "HS_COPYRIGHT=$(HS_COPYRIGHT)" \
   283 	 /D "HS_FNAME=$(HS_FNAME)" \
   284 	 /D "HS_INTERNAL_NAME=$(HS_INTERNAL_NAME)" \
   285 	 /D "HS_NAME=$(HS_NAME)"
   287 # Need this to match the CXX_FLAGS settings
   288 !if "$(MFC_DEBUG)" == "true"
   289 RC_FLAGS = $(RC_FLAGS) /D "_DEBUG"
   290 !endif

mercurial