annotate make/windows/makefiles/compile.make @ 12919:7638e35cabc6

8015614: Update build settings Reviewed-by: tbell, dholmes, ahgross
author erikj
date Mon, 19 Aug 2013 17:47:21 +0200
parents 33c52908bcdb
children 1a93f2c5945a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
11144
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
2 # Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1485
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1485
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1485
diff changeset
21 # questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 #
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # Generic compiler settings
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
26 !if "x$(CXX)" == "x"
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
27 CXX=cl.exe
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
28 !endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
29
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
30 # CXX Flags: (these vary slightly from VC6->VS2003->VS2005 compilers)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31 # /nologo Supress copyright message at every cl.exe startup
a61af66fc99e Initial load
duke
parents:
diff changeset
32 # /W3 Warning level 3
a61af66fc99e Initial load
duke
parents:
diff changeset
33 # /Zi Include debugging information
a61af66fc99e Initial load
duke
parents:
diff changeset
34 # /WX Treat any warning error as a fatal error
427
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
35 # /MD Use dynamic multi-threaded runtime (msvcrt.dll or msvc*NN.dll)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36 # /MTd Use static multi-threaded runtime debug versions
a61af66fc99e Initial load
duke
parents:
diff changeset
37 # /O1 Optimize for size (/Os), skips /Oi
a61af66fc99e Initial load
duke
parents:
diff changeset
38 # /O2 Optimize for speed (/Ot), adds /Oi to /O1
a61af66fc99e Initial load
duke
parents:
diff changeset
39 # /Ox Old "all optimizations flag" for VC6 (in /O1)
a61af66fc99e Initial load
duke
parents:
diff changeset
40 # /Oy Use frame pointer register as GP reg (in /Ox and /O1)
a61af66fc99e Initial load
duke
parents:
diff changeset
41 # /GF Merge string constants and put in read-only memory (in /O1)
a61af66fc99e Initial load
duke
parents:
diff changeset
42 # /Gy Func level link (in /O1, allows for link-time func ordering)
a61af66fc99e Initial load
duke
parents:
diff changeset
43 # /Gs Inserts stack probes (in /O1)
a61af66fc99e Initial load
duke
parents:
diff changeset
44 # /GS Inserts security stack checks in some functions (VS2005 default)
a61af66fc99e Initial load
duke
parents:
diff changeset
45 # /Oi Use intrinsics (in /O2)
a61af66fc99e Initial load
duke
parents:
diff changeset
46 # /Od Disable all optimizations
a61af66fc99e Initial load
duke
parents:
diff changeset
47 #
a61af66fc99e Initial load
duke
parents:
diff changeset
48 # NOTE: Normally following any of the above with a '-' will turn off that flag
57
ff0979201b06 6655385: Disable frame pointer omission in jvm.dll on Windows for better crash logs
sbohne
parents: 0
diff changeset
49 #
ff0979201b06 6655385: Disable frame pointer omission in jvm.dll on Windows for better crash logs
sbohne
parents: 0
diff changeset
50 # 6655385: For VS2003/2005 we now specify /Oy- (disable frame pointer
ff0979201b06 6655385: Disable frame pointer omission in jvm.dll on Windows for better crash logs
sbohne
parents: 0
diff changeset
51 # omission.) This has little to no effect on performance while vastly
ff0979201b06 6655385: Disable frame pointer omission in jvm.dll on Windows for better crash logs
sbohne
parents: 0
diff changeset
52 # improving the quality of crash log stack traces involving jvm.dll.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 # These are always used in all compiles
10214
0380df7c3cd0 8013785: Respect EXTRA_CFLAGS on windows
sla
parents: 8821
diff changeset
55 CXX_FLAGS=$(EXTRA_CFLAGS) /nologo /W3 /WX
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4891
diff changeset
57 # Let's add debug information when Full Debug Symbols is enabled
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4891
diff changeset
58 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
59 CXX_FLAGS=$(CXX_FLAGS) /Zi
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4891
diff changeset
60 !endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 # Based on BUILDARCH we add some flags and select the default compiler name
a61af66fc99e Initial load
duke
parents:
diff changeset
63 !if "$(BUILDARCH)" == "ia64"
a61af66fc99e Initial load
duke
parents:
diff changeset
64 MACHINE=IA64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 DEFAULT_COMPILER_NAME=VS2003
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
66 CXX_FLAGS=$(CXX_FLAGS) /D "CC_INTERP" /D "_LP64" /D "IA64"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 !if "$(BUILDARCH)" == "amd64"
a61af66fc99e Initial load
duke
parents:
diff changeset
70 MACHINE=AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
71 DEFAULT_COMPILER_NAME=VS2005
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
72 CXX_FLAGS=$(CXX_FLAGS) /D "_LP64" /D "AMD64"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73 LP64=1
a61af66fc99e Initial load
duke
parents:
diff changeset
74 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 !if "$(BUILDARCH)" == "i486"
a61af66fc99e Initial load
duke
parents:
diff changeset
77 MACHINE=I386
a61af66fc99e Initial load
duke
parents:
diff changeset
78 DEFAULT_COMPILER_NAME=VS2003
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
79 CXX_FLAGS=$(CXX_FLAGS) /D "IA32"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
80 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 # Sanity check, this is the default if not amd64, ia64, or i486
a61af66fc99e Initial load
duke
parents:
diff changeset
83 !ifndef DEFAULT_COMPILER_NAME
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
84 CXX=ARCH_ERROR
0
a61af66fc99e Initial load
duke
parents:
diff changeset
85 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
86
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
87 CXX_FLAGS=$(CXX_FLAGS) /D "WIN32" /D "_WINDOWS"
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1552
diff changeset
88 # Must specify this for sharedRuntimeTrig.cpp
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
89 CXX_FLAGS=$(CXX_FLAGS) /D "VM_LITTLE_ENDIAN"
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1552
diff changeset
90
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1552
diff changeset
91 # Used for platform dispatching
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
92 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_FAMILY_windows
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
93 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_ARCH_$(Platform_arch)
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
94 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_ARCH_MODEL_$(Platform_arch_model)
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
95 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_ARCH_windows_$(Platform_arch)
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
96 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_OS_ARCH_MODEL_windows_$(Platform_arch_model)
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
97 CXX_FLAGS=$(CXX_FLAGS) /D TARGET_COMPILER_visCPP
2027
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1552
diff changeset
98
aa6e219afbf1 7006354: Updates to Visual Studio project creation and development launcher
sla
parents: 1552
diff changeset
99
427
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
100 # MSC_VER is a 4 digit number that tells us what compiler is being used
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
101 # and is generated when the local.make file is created by build.make
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
102 # via the script get_msc_ver.sh
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
103 #
0
a61af66fc99e Initial load
duke
parents:
diff changeset
104 # If MSC_VER is set, it overrides the above default setting.
a61af66fc99e Initial load
duke
parents:
diff changeset
105 # But it should be set.
a61af66fc99e Initial load
duke
parents:
diff changeset
106 # Possible values:
a61af66fc99e Initial load
duke
parents:
diff changeset
107 # 1200 is for VC6
a61af66fc99e Initial load
duke
parents:
diff changeset
108 # 1300 and 1310 is VS2003 or VC7
a61af66fc99e Initial load
duke
parents:
diff changeset
109 # 1399 is our fake number for the VS2005 compiler that really isn't 1400
a61af66fc99e Initial load
duke
parents:
diff changeset
110 # 1400 is for VS2005
427
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
111 # 1500 is for VS2008
1485
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
112 # 1600 is for VS2010
11144
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
113 # 1700 is for VS2012
0
a61af66fc99e Initial load
duke
parents:
diff changeset
114 # Do not confuse this MSC_VER with the predefined macro _MSC_VER that the
a61af66fc99e Initial load
duke
parents:
diff changeset
115 # compiler provides, when MSC_VER==1399, _MSC_VER will be 1400.
a61af66fc99e Initial load
duke
parents:
diff changeset
116 # Normally they are the same, but a pre-release of the VS2005 compilers
a61af66fc99e Initial load
duke
parents:
diff changeset
117 # in the Windows 64bit Platform SDK said it was 1400 when it was really
a61af66fc99e Initial load
duke
parents:
diff changeset
118 # closer to VS2003 in terms of option spellings, so we use 1399 for that
a61af66fc99e Initial load
duke
parents:
diff changeset
119 # 1400 version that really isn't 1400.
427
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
120 # See the file get_msc_ver.sh for more info.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
121 !if "x$(MSC_VER)" == "x"
a61af66fc99e Initial load
duke
parents:
diff changeset
122 COMPILER_NAME=$(DEFAULT_COMPILER_NAME)
a61af66fc99e Initial load
duke
parents:
diff changeset
123 !else
a61af66fc99e Initial load
duke
parents:
diff changeset
124 !if "$(MSC_VER)" == "1200"
a61af66fc99e Initial load
duke
parents:
diff changeset
125 COMPILER_NAME=VC6
a61af66fc99e Initial load
duke
parents:
diff changeset
126 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
127 !if "$(MSC_VER)" == "1300"
a61af66fc99e Initial load
duke
parents:
diff changeset
128 COMPILER_NAME=VS2003
a61af66fc99e Initial load
duke
parents:
diff changeset
129 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
130 !if "$(MSC_VER)" == "1310"
a61af66fc99e Initial load
duke
parents:
diff changeset
131 COMPILER_NAME=VS2003
a61af66fc99e Initial load
duke
parents:
diff changeset
132 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
133 !if "$(MSC_VER)" == "1399"
a61af66fc99e Initial load
duke
parents:
diff changeset
134 # Compiler might say 1400, but if it's 14.00.30701, it isn't really VS2005
a61af66fc99e Initial load
duke
parents:
diff changeset
135 COMPILER_NAME=VS2003
a61af66fc99e Initial load
duke
parents:
diff changeset
136 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
137 !if "$(MSC_VER)" == "1400"
a61af66fc99e Initial load
duke
parents:
diff changeset
138 COMPILER_NAME=VS2005
a61af66fc99e Initial load
duke
parents:
diff changeset
139 !endif
427
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
140 !if "$(MSC_VER)" == "1500"
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
141 COMPILER_NAME=VS2008
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
142 !endif
1485
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
143 !if "$(MSC_VER)" == "1600"
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
144 COMPILER_NAME=VS2010
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
145 !endif
11144
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
146 !if "$(MSC_VER)" == "1700"
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
147 COMPILER_NAME=VS2012
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
148 !endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
149 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 # By default, we do not want to use the debug version of the msvcrt.dll file
a61af66fc99e Initial load
duke
parents:
diff changeset
152 # but if MFC_DEBUG is defined in the environment it will be used.
a61af66fc99e Initial load
duke
parents:
diff changeset
153 MS_RUNTIME_OPTION = /MD
a61af66fc99e Initial load
duke
parents:
diff changeset
154 !if "$(MFC_DEBUG)" == "true"
a61af66fc99e Initial load
duke
parents:
diff changeset
155 MS_RUNTIME_OPTION = /MTd /D "_DEBUG"
a61af66fc99e Initial load
duke
parents:
diff changeset
156 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
157
11144
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
158 # VS2012 and later won't work with:
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
159 # /D _STATIC_CPPLIB /D _DISABLE_DEPRECATE_STATIC_CPPLIB
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
160 !if "$(MSC_VER)" < "1700"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
161 # Always add the _STATIC_CPPLIB flag
2073
e0c969b97f66 6975480: VS2010 says _STATIC_CPPLIB is deprecated, may need to change this usage
zgu
parents: 1552
diff changeset
162 STATIC_CPPLIB_OPTION = /D _STATIC_CPPLIB /D _DISABLE_DEPRECATE_STATIC_CPPLIB
0
a61af66fc99e Initial load
duke
parents:
diff changeset
163 MS_RUNTIME_OPTION = $(MS_RUNTIME_OPTION) $(STATIC_CPPLIB_OPTION)
11144
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
164 !endif
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
165 CXX_FLAGS=$(CXX_FLAGS) $(MS_RUNTIME_OPTION)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 # How /GX option is spelled
a61af66fc99e Initial load
duke
parents:
diff changeset
168 GX_OPTION = /GX
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 # Optimization settings for various versions of the compilers and types of
a61af66fc99e Initial load
duke
parents:
diff changeset
171 # builds. Three basic sets of settings: product, fastdebug, and debug.
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
172 # These get added into CXX_FLAGS as needed by other makefiles.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
173 !if "$(COMPILER_NAME)" == "VC6"
a61af66fc99e Initial load
duke
parents:
diff changeset
174 PRODUCT_OPT_OPTION = /Ox /Os /Gy /GF
a61af66fc99e Initial load
duke
parents:
diff changeset
175 FASTDEBUG_OPT_OPTION = /Ox /Os /Gy /GF
a61af66fc99e Initial load
duke
parents:
diff changeset
176 DEBUG_OPT_OPTION = /Od
a61af66fc99e Initial load
duke
parents:
diff changeset
177 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 !if "$(COMPILER_NAME)" == "VS2003"
57
ff0979201b06 6655385: Disable frame pointer omission in jvm.dll on Windows for better crash logs
sbohne
parents: 0
diff changeset
180 PRODUCT_OPT_OPTION = /O2 /Oy-
ff0979201b06 6655385: Disable frame pointer omission in jvm.dll on Windows for better crash logs
sbohne
parents: 0
diff changeset
181 FASTDEBUG_OPT_OPTION = /O2 /Oy-
0
a61af66fc99e Initial load
duke
parents:
diff changeset
182 DEBUG_OPT_OPTION = /Od
12919
7638e35cabc6 8015614: Update build settings
erikj
parents: 11144
diff changeset
183 SAFESEH_FLAG = /SAFESEH
0
a61af66fc99e Initial load
duke
parents:
diff changeset
184 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 !if "$(COMPILER_NAME)" == "VS2005"
57
ff0979201b06 6655385: Disable frame pointer omission in jvm.dll on Windows for better crash logs
sbohne
parents: 0
diff changeset
187 PRODUCT_OPT_OPTION = /O2 /Oy-
ff0979201b06 6655385: Disable frame pointer omission in jvm.dll on Windows for better crash logs
sbohne
parents: 0
diff changeset
188 FASTDEBUG_OPT_OPTION = /O2 /Oy-
0
a61af66fc99e Initial load
duke
parents:
diff changeset
189 DEBUG_OPT_OPTION = /Od
a61af66fc99e Initial load
duke
parents:
diff changeset
190 GX_OPTION = /EHsc
a61af66fc99e Initial load
duke
parents:
diff changeset
191 # This VS2005 compiler has /GS as a default and requires bufferoverflowU.lib
a61af66fc99e Initial load
duke
parents:
diff changeset
192 # on the link command line, otherwise we get missing __security_check_cookie
a61af66fc99e Initial load
duke
parents:
diff changeset
193 # externals at link time. Even with /GS-, you need bufferoverflowU.lib.
a61af66fc99e Initial load
duke
parents:
diff changeset
194 # NOTE: Currently we decided to not use /GS-
a61af66fc99e Initial load
duke
parents:
diff changeset
195 BUFFEROVERFLOWLIB = bufferoverflowU.lib
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
196 LD_FLAGS = /manifest $(LD_FLAGS) $(BUFFEROVERFLOWLIB)
427
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
197 # Manifest Tool - used in VS2005 and later to adjust manifests stored
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
198 # as resources inside build artifacts.
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
199 !if "x$(MT)" == "x"
427
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
200 MT=mt.exe
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
201 !endif
12919
7638e35cabc6 8015614: Update build settings
erikj
parents: 11144
diff changeset
202 SAFESEH_FLAG = /SAFESEH
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
203 !endif
427
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
204
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
205 !if "$(COMPILER_NAME)" == "VS2008"
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
206 PRODUCT_OPT_OPTION = /O2 /Oy-
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
207 FASTDEBUG_OPT_OPTION = /O2 /Oy-
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
208 DEBUG_OPT_OPTION = /Od
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
209 GX_OPTION = /EHsc
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
210 LD_FLAGS = /manifest $(LD_FLAGS)
427
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
211 # Manifest Tool - used in VS2005 and later to adjust manifests stored
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
212 # as resources inside build artifacts.
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
213 !if "x$(MT)" == "x"
427
3c07cda72b7d 6764892: VS2008 changes required to compile hotspot sources
tbell
parents: 196
diff changeset
214 MT=mt.exe
0
a61af66fc99e Initial load
duke
parents:
diff changeset
215 !endif
12919
7638e35cabc6 8015614: Update build settings
erikj
parents: 11144
diff changeset
216 SAFESEH_FLAG = /SAFESEH
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
217 !endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
218
1485
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
219 !if "$(COMPILER_NAME)" == "VS2010"
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
220 PRODUCT_OPT_OPTION = /O2 /Oy-
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
221 FASTDEBUG_OPT_OPTION = /O2 /Oy-
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
222 DEBUG_OPT_OPTION = /Od
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
223 GX_OPTION = /EHsc
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
224 LD_FLAGS = /manifest $(LD_FLAGS)
1485
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
225 # Manifest Tool - used in VS2005 and later to adjust manifests stored
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
226 # as resources inside build artifacts.
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
227 !if "x$(MT)" == "x"
1485
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
228 MT=mt.exe
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
229 !endif
2308
99bd05619fa4 7017110: Add /SAFESEH to links on windows 32bit to verify safe exceptions
zgu
parents: 2233
diff changeset
230 !if "$(BUILDARCH)" == "i486"
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
231 LD_FLAGS = /SAFESEH $(LD_FLAGS)
2308
99bd05619fa4 7017110: Add /SAFESEH to links on windows 32bit to verify safe exceptions
zgu
parents: 2233
diff changeset
232 !endif
1485
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
233 !endif
fb57d4cf76c2 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 844
diff changeset
234
11144
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
235 !if "$(COMPILER_NAME)" == "VS2012"
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
236 PRODUCT_OPT_OPTION = /O2 /Oy-
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
237 FASTDEBUG_OPT_OPTION = /O2 /Oy-
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
238 DEBUG_OPT_OPTION = /Od
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
239 GX_OPTION = /EHsc
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
240 LD_FLAGS = /manifest $(LD_FLAGS)
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
241 # Manifest Tool - used in VS2005 and later to adjust manifests stored
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
242 # as resources inside build artifacts.
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
243 !if "x$(MT)" == "x"
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
244 MT=mt.exe
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
245 !endif
12919
7638e35cabc6 8015614: Update build settings
erikj
parents: 11144
diff changeset
246 SAFESEH_FLAG = /SAFESEH
7638e35cabc6 8015614: Update build settings
erikj
parents: 11144
diff changeset
247 !endif
7638e35cabc6 8015614: Update build settings
erikj
parents: 11144
diff changeset
248
11144
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
249 !if "$(BUILDARCH)" == "i486"
12919
7638e35cabc6 8015614: Update build settings
erikj
parents: 11144
diff changeset
250 LD_FLAGS = $(SAFESEH_FLAG) $(LD_FLAGS)
11144
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
251 !endif
33c52908bcdb 8015759: hotspot changes needed to compile with Visual Studio 2012
dholmes
parents: 10214
diff changeset
252
0
a61af66fc99e Initial load
duke
parents:
diff changeset
253 # If NO_OPTIMIZATIONS is defined in the environment, turn everything off
a61af66fc99e Initial load
duke
parents:
diff changeset
254 !ifdef NO_OPTIMIZATIONS
a61af66fc99e Initial load
duke
parents:
diff changeset
255 PRODUCT_OPT_OPTION = $(DEBUG_OPT_OPTION)
a61af66fc99e Initial load
duke
parents:
diff changeset
256 FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION)
a61af66fc99e Initial load
duke
parents:
diff changeset
257 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 # Generic linker settings
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
260 !if "x$(LD)" == "x"
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
261 LD=link.exe
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
262 !endif
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
263 LD_FLAGS= $(LD_FLAGS) kernel32.lib user32.lib gdi32.lib winspool.lib \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
264 comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
a61af66fc99e Initial load
duke
parents:
diff changeset
265 uuid.lib Wsock32.lib winmm.lib /nologo /machine:$(MACHINE) /opt:REF \
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4891
diff changeset
266 /opt:ICF,8
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4891
diff changeset
267 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4891
diff changeset
268 LD_FLAGS= $(LD_FLAGS) /map /debug
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4891
diff changeset
269 !endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
270
3833
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 2308
diff changeset
271
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 2308
diff changeset
272 !if $(MSC_VER) >= 1600
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
273 LD_FLAGS= $(LD_FLAGS) psapi.lib
3833
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 2308
diff changeset
274 !endif
b1cbb0907b36 7016797: Hotspot: securely/restrictive load dlls and new API for loading system dlls
zgu
parents: 2308
diff changeset
275
0
a61af66fc99e Initial load
duke
parents:
diff changeset
276 # Resource compiler settings
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
277 !if "x$(RC)" == "x"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
278 RC=rc.exe
5897
7292cff45988 7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents: 4891
diff changeset
279 !endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
280 RC_FLAGS=/D "HS_VER=$(HS_VER)" \
a61af66fc99e Initial load
duke
parents:
diff changeset
281 /D "HS_DOTVER=$(HS_DOTVER)" \
a61af66fc99e Initial load
duke
parents:
diff changeset
282 /D "HS_BUILD_ID=$(HS_BUILD_ID)" \
a61af66fc99e Initial load
duke
parents:
diff changeset
283 /D "JDK_VER=$(JDK_VER)" \
a61af66fc99e Initial load
duke
parents:
diff changeset
284 /D "JDK_DOTVER=$(JDK_DOTVER)" \
a61af66fc99e Initial load
duke
parents:
diff changeset
285 /D "HS_COMPANY=$(HS_COMPANY)" \
a61af66fc99e Initial load
duke
parents:
diff changeset
286 /D "HS_FILEDESC=$(HS_FILEDESC)" \
a61af66fc99e Initial load
duke
parents:
diff changeset
287 /D "HS_COPYRIGHT=$(HS_COPYRIGHT)" \
a61af66fc99e Initial load
duke
parents:
diff changeset
288 /D "HS_FNAME=$(HS_FNAME)" \
a61af66fc99e Initial load
duke
parents:
diff changeset
289 /D "HS_INTERNAL_NAME=$(HS_INTERNAL_NAME)" \
a61af66fc99e Initial load
duke
parents:
diff changeset
290 /D "HS_NAME=$(HS_NAME)"
a61af66fc99e Initial load
duke
parents:
diff changeset
291
4891
719f7007c8e8 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 3833
diff changeset
292 # Need this to match the CXX_FLAGS settings
0
a61af66fc99e Initial load
duke
parents:
diff changeset
293 !if "$(MFC_DEBUG)" == "true"
a61af66fc99e Initial load
duke
parents:
diff changeset
294 RC_FLAGS = $(RC_FLAGS) /D "_DEBUG"
a61af66fc99e Initial load
duke
parents:
diff changeset
295 !endif
a61af66fc99e Initial load
duke
parents:
diff changeset
296