make/windows/makefiles/compile.make

Tue, 23 Nov 2010 13:22:55 -0800

author
stefank
date
Tue, 23 Nov 2010 13:22:55 -0800
changeset 2314
f95d63e2154a
parent 1907
c18cbe5936b8
child 2369
aa6e219afbf1
child 2396
e0c969b97f66
permissions
-rw-r--r--

6989984: Use standard include model for Hospot
Summary: Replaced MakeDeps and the includeDB files with more standardized solutions.
Reviewed-by: coleenp, kvn, kamg

duke@435 1 #
trims@1907 2 # Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
trims@1907 19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 # or visit www.oracle.com if you need additional information or have any
trims@1907 21 # questions.
duke@435 22 #
duke@435 23 #
duke@435 24
duke@435 25 # Generic compiler settings
duke@435 26 CPP=cl.exe
duke@435 27
duke@435 28 # CPP Flags: (these vary slightly from VC6->VS2003->VS2005 compilers)
duke@435 29 # /nologo Supress copyright message at every cl.exe startup
duke@435 30 # /W3 Warning level 3
duke@435 31 # /Zi Include debugging information
duke@435 32 # /WX Treat any warning error as a fatal error
tbell@862 33 # /MD Use dynamic multi-threaded runtime (msvcrt.dll or msvc*NN.dll)
duke@435 34 # /MTd Use static multi-threaded runtime debug versions
duke@435 35 # /O1 Optimize for size (/Os), skips /Oi
duke@435 36 # /O2 Optimize for speed (/Ot), adds /Oi to /O1
duke@435 37 # /Ox Old "all optimizations flag" for VC6 (in /O1)
duke@435 38 # /Oy Use frame pointer register as GP reg (in /Ox and /O1)
duke@435 39 # /GF Merge string constants and put in read-only memory (in /O1)
duke@435 40 # /Gy Func level link (in /O1, allows for link-time func ordering)
duke@435 41 # /Gs Inserts stack probes (in /O1)
duke@435 42 # /GS Inserts security stack checks in some functions (VS2005 default)
duke@435 43 # /Oi Use intrinsics (in /O2)
duke@435 44 # /Od Disable all optimizations
duke@435 45 #
duke@435 46 # NOTE: Normally following any of the above with a '-' will turn off that flag
sbohne@492 47 #
sbohne@492 48 # 6655385: For VS2003/2005 we now specify /Oy- (disable frame pointer
sbohne@492 49 # omission.) This has little to no effect on performance while vastly
sbohne@492 50 # improving the quality of crash log stack traces involving jvm.dll.
duke@435 51
duke@435 52 # These are always used in all compiles
duke@435 53 CPP_FLAGS=/nologo /W3 /WX
duke@435 54
duke@435 55 # Let's add debug information always too.
duke@435 56 CPP_FLAGS=$(CPP_FLAGS) /Zi
duke@435 57
duke@435 58 # Based on BUILDARCH we add some flags and select the default compiler name
duke@435 59 !if "$(BUILDARCH)" == "ia64"
duke@435 60 MACHINE=IA64
duke@435 61 DEFAULT_COMPILER_NAME=VS2003
duke@435 62 CPP_FLAGS=$(CPP_FLAGS) /D "CC_INTERP" /D "_LP64" /D "IA64"
duke@435 63 !endif
duke@435 64
duke@435 65 !if "$(BUILDARCH)" == "amd64"
duke@435 66 MACHINE=AMD64
duke@435 67 DEFAULT_COMPILER_NAME=VS2005
duke@435 68 CPP_FLAGS=$(CPP_FLAGS) /D "_LP64" /D "AMD64"
duke@435 69 LP64=1
duke@435 70 !endif
duke@435 71
duke@435 72 !if "$(BUILDARCH)" == "i486"
duke@435 73 MACHINE=I386
duke@435 74 DEFAULT_COMPILER_NAME=VS2003
duke@435 75 CPP_FLAGS=$(CPP_FLAGS) /D "IA32"
duke@435 76 !endif
duke@435 77
duke@435 78 # Sanity check, this is the default if not amd64, ia64, or i486
duke@435 79 !ifndef DEFAULT_COMPILER_NAME
duke@435 80 CPP=ARCH_ERROR
duke@435 81 !endif
duke@435 82
tbell@862 83 # MSC_VER is a 4 digit number that tells us what compiler is being used
tbell@862 84 # and is generated when the local.make file is created by build.make
tbell@862 85 # via the script get_msc_ver.sh
tbell@862 86 #
duke@435 87 # If MSC_VER is set, it overrides the above default setting.
duke@435 88 # But it should be set.
duke@435 89 # Possible values:
duke@435 90 # 1200 is for VC6
duke@435 91 # 1300 and 1310 is VS2003 or VC7
duke@435 92 # 1399 is our fake number for the VS2005 compiler that really isn't 1400
duke@435 93 # 1400 is for VS2005
tbell@862 94 # 1500 is for VS2008
prr@1840 95 # 1600 is for VS2010
duke@435 96 # Do not confuse this MSC_VER with the predefined macro _MSC_VER that the
duke@435 97 # compiler provides, when MSC_VER==1399, _MSC_VER will be 1400.
duke@435 98 # Normally they are the same, but a pre-release of the VS2005 compilers
duke@435 99 # in the Windows 64bit Platform SDK said it was 1400 when it was really
duke@435 100 # closer to VS2003 in terms of option spellings, so we use 1399 for that
duke@435 101 # 1400 version that really isn't 1400.
tbell@862 102 # See the file get_msc_ver.sh for more info.
duke@435 103 !if "x$(MSC_VER)" == "x"
duke@435 104 COMPILER_NAME=$(DEFAULT_COMPILER_NAME)
duke@435 105 !else
duke@435 106 !if "$(MSC_VER)" == "1200"
duke@435 107 COMPILER_NAME=VC6
duke@435 108 !endif
duke@435 109 !if "$(MSC_VER)" == "1300"
duke@435 110 COMPILER_NAME=VS2003
duke@435 111 !endif
duke@435 112 !if "$(MSC_VER)" == "1310"
duke@435 113 COMPILER_NAME=VS2003
duke@435 114 !endif
duke@435 115 !if "$(MSC_VER)" == "1399"
duke@435 116 # Compiler might say 1400, but if it's 14.00.30701, it isn't really VS2005
duke@435 117 COMPILER_NAME=VS2003
duke@435 118 !endif
duke@435 119 !if "$(MSC_VER)" == "1400"
duke@435 120 COMPILER_NAME=VS2005
duke@435 121 !endif
tbell@862 122 !if "$(MSC_VER)" == "1500"
tbell@862 123 COMPILER_NAME=VS2008
tbell@862 124 !endif
prr@1840 125 !if "$(MSC_VER)" == "1600"
prr@1840 126 COMPILER_NAME=VS2010
prr@1840 127 !endif
duke@435 128 !endif
duke@435 129
duke@435 130 # Add what version of the compiler we think this is to the compile line
duke@435 131 CPP_FLAGS=$(CPP_FLAGS) /D "MSC_VER=$(MSC_VER)"
duke@435 132
duke@435 133 # By default, we do not want to use the debug version of the msvcrt.dll file
duke@435 134 # but if MFC_DEBUG is defined in the environment it will be used.
duke@435 135 MS_RUNTIME_OPTION = /MD
duke@435 136 !if "$(MFC_DEBUG)" == "true"
duke@435 137 MS_RUNTIME_OPTION = /MTd /D "_DEBUG"
duke@435 138 !endif
duke@435 139
duke@435 140 # Always add the _STATIC_CPPLIB flag
duke@435 141 STATIC_CPPLIB_OPTION = /D _STATIC_CPPLIB
duke@435 142 MS_RUNTIME_OPTION = $(MS_RUNTIME_OPTION) $(STATIC_CPPLIB_OPTION)
duke@435 143 CPP_FLAGS=$(CPP_FLAGS) $(MS_RUNTIME_OPTION)
duke@435 144
duke@435 145 # How /GX option is spelled
duke@435 146 GX_OPTION = /GX
duke@435 147
duke@435 148 # Optimization settings for various versions of the compilers and types of
duke@435 149 # builds. Three basic sets of settings: product, fastdebug, and debug.
duke@435 150 # These get added into CPP_FLAGS as needed by other makefiles.
duke@435 151 !if "$(COMPILER_NAME)" == "VC6"
duke@435 152 PRODUCT_OPT_OPTION = /Ox /Os /Gy /GF
duke@435 153 FASTDEBUG_OPT_OPTION = /Ox /Os /Gy /GF
duke@435 154 DEBUG_OPT_OPTION = /Od
duke@435 155 !endif
duke@435 156
duke@435 157 !if "$(COMPILER_NAME)" == "VS2003"
sbohne@492 158 PRODUCT_OPT_OPTION = /O2 /Oy-
sbohne@492 159 FASTDEBUG_OPT_OPTION = /O2 /Oy-
duke@435 160 DEBUG_OPT_OPTION = /Od
duke@435 161 !endif
duke@435 162
duke@435 163 !if "$(COMPILER_NAME)" == "VS2005"
sbohne@492 164 PRODUCT_OPT_OPTION = /O2 /Oy-
sbohne@492 165 FASTDEBUG_OPT_OPTION = /O2 /Oy-
duke@435 166 DEBUG_OPT_OPTION = /Od
duke@435 167 GX_OPTION = /EHsc
duke@435 168 # This VS2005 compiler has /GS as a default and requires bufferoverflowU.lib
duke@435 169 # on the link command line, otherwise we get missing __security_check_cookie
duke@435 170 # externals at link time. Even with /GS-, you need bufferoverflowU.lib.
duke@435 171 # NOTE: Currently we decided to not use /GS-
duke@435 172 BUFFEROVERFLOWLIB = bufferoverflowU.lib
tbell@862 173 LINK_FLAGS = /manifest $(LINK_FLAGS) $(BUFFEROVERFLOWLIB)
tbell@862 174 # Manifest Tool - used in VS2005 and later to adjust manifests stored
tbell@862 175 # as resources inside build artifacts.
tbell@862 176 MT=mt.exe
tbell@862 177 !endif
tbell@862 178
tbell@862 179 !if "$(COMPILER_NAME)" == "VS2008"
tbell@862 180 PRODUCT_OPT_OPTION = /O2 /Oy-
tbell@862 181 FASTDEBUG_OPT_OPTION = /O2 /Oy-
tbell@862 182 DEBUG_OPT_OPTION = /Od
tbell@862 183 GX_OPTION = /EHsc
tbell@862 184 LINK_FLAGS = /manifest $(LINK_FLAGS)
tbell@862 185 # Manifest Tool - used in VS2005 and later to adjust manifests stored
tbell@862 186 # as resources inside build artifacts.
tbell@862 187 MT=mt.exe
duke@435 188 !endif
duke@435 189
prr@1840 190 !if "$(COMPILER_NAME)" == "VS2010"
prr@1840 191 PRODUCT_OPT_OPTION = /O2 /Oy-
prr@1840 192 FASTDEBUG_OPT_OPTION = /O2 /Oy-
prr@1840 193 DEBUG_OPT_OPTION = /Od
prr@1840 194 GX_OPTION = /EHsc
prr@1840 195 LINK_FLAGS = /manifest $(LINK_FLAGS)
prr@1840 196 # Manifest Tool - used in VS2005 and later to adjust manifests stored
prr@1840 197 # as resources inside build artifacts.
prr@1840 198 MT=mt.exe
prr@1840 199 !endif
prr@1840 200
duke@435 201 # Compile for space above time.
duke@435 202 !if "$(Variant)" == "kernel"
sbohne@492 203 PRODUCT_OPT_OPTION = /O1 /Oy-
sbohne@492 204 FASTDEBUG_OPT_OPTION = /O1 /Oy-
duke@435 205 DEBUG_OPT_OPTION = /Od
duke@435 206 !endif
duke@435 207
duke@435 208 # If NO_OPTIMIZATIONS is defined in the environment, turn everything off
duke@435 209 !ifdef NO_OPTIMIZATIONS
duke@435 210 PRODUCT_OPT_OPTION = $(DEBUG_OPT_OPTION)
duke@435 211 FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION)
duke@435 212 !endif
duke@435 213
duke@435 214 # Generic linker settings
duke@435 215 LINK=link.exe
duke@435 216 LINK_FLAGS= $(LINK_FLAGS) kernel32.lib user32.lib gdi32.lib winspool.lib \
duke@435 217 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
duke@435 218 uuid.lib Wsock32.lib winmm.lib /nologo /machine:$(MACHINE) /opt:REF \
duke@435 219 /opt:ICF,8 /map /debug
duke@435 220
duke@435 221 # Resource compiler settings
duke@435 222 RC=rc.exe
duke@435 223 RC_FLAGS=/D "HS_VER=$(HS_VER)" \
duke@435 224 /D "HS_DOTVER=$(HS_DOTVER)" \
duke@435 225 /D "HS_BUILD_ID=$(HS_BUILD_ID)" \
duke@435 226 /D "JDK_VER=$(JDK_VER)" \
duke@435 227 /D "JDK_DOTVER=$(JDK_DOTVER)" \
duke@435 228 /D "HS_COMPANY=$(HS_COMPANY)" \
duke@435 229 /D "HS_FILEDESC=$(HS_FILEDESC)" \
duke@435 230 /D "HS_COPYRIGHT=$(HS_COPYRIGHT)" \
duke@435 231 /D "HS_FNAME=$(HS_FNAME)" \
duke@435 232 /D "HS_INTERNAL_NAME=$(HS_INTERNAL_NAME)" \
duke@435 233 /D "HS_NAME=$(HS_NAME)"
duke@435 234
duke@435 235 # Need this to match the CPP_FLAGS settings
duke@435 236 !if "$(MFC_DEBUG)" == "true"
duke@435 237 RC_FLAGS = $(RC_FLAGS) /D "_DEBUG"
duke@435 238 !endif
duke@435 239

mercurial