author | ihse |
Fri, 12 Jun 2015 08:31:01 +0200 | |
changeset 33957 | 39113ae98993 |
parent 25639 | 61be16de0fd5 |
child 34319 | 9d6dd3c5ca23 |
permissions | -rw-r--r-- |
1 | 1 |
# |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
2 |
# Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5093
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5093
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5093
diff
changeset
|
21 |
# questions. |
6453 | 22 |
# |
1 | 23 |
# |
24 |
||
25 |
# Note: this makefile is invoked both from build.bat and from the J2SE |
|
26 |
# control workspace in exactly the same manner; the required |
|
27 |
# environment variables (Variant, WorkSpace, BootStrapDir, BuildUser, HOTSPOT_BUILD_VERSION) |
|
28 |
# are passed in as command line arguments. |
|
29 |
||
5093
5fe28adc52ef
6938185: 3/4 6923488 breaks Windows command shell builds
dcubed
parents:
5087
diff
changeset
|
30 |
# Note: Running nmake or build.bat from the Windows command shell requires |
5fe28adc52ef
6938185: 3/4 6923488 breaks Windows command shell builds
dcubed
parents:
5087
diff
changeset
|
31 |
# that "sh" be accessible on the PATH. An MKS install does this. |
5fe28adc52ef
6938185: 3/4 6923488 breaks Windows command shell builds
dcubed
parents:
5087
diff
changeset
|
32 |
|
1 | 33 |
# SA components are built if BUILD_WIN_SA=1 is specified. |
34 |
# See notes in README. This produces files: |
|
35 |
# 1. sa-jdi.jar - This is built before building jvm.dll |
|
14815
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
12503
diff
changeset
|
36 |
# 2. sawindbg.dll - Native library for SA - This is built after jvm.dll |
1 | 37 |
# - Also, .lib, .map, .pdb. |
38 |
# |
|
39 |
# Please refer to ./makefiles/sa.make |
|
40 |
||
41 |
# If we haven't set an ARCH yet use x86 |
|
42 |
# create.bat and build.bat will set it, if used. |
|
43 |
!ifndef ARCH |
|
44 |
ARCH=x86 |
|
45 |
!endif |
|
46 |
||
47 |
||
48 |
# Must be one of these values (if value comes in from env, can't trust it) |
|
49 |
!if "$(ARCH)" != "x86" |
|
50 |
!if "$(ARCH)" != "ia64" |
|
51 |
ARCH=x86 |
|
52 |
!endif |
|
53 |
!endif |
|
54 |
||
55 |
# At this point we should be certain that ARCH has a definition |
|
56 |
# now determine the BUILDARCH |
|
57 |
# |
|
58 |
||
59 |
# the default BUILDARCH |
|
60 |
BUILDARCH=i486 |
|
61 |
||
62 |
# Allow control workspace to force Itanium or AMD64 builds with LP64 |
|
63 |
ARCH_TEXT= |
|
64 |
!ifdef LP64 |
|
65 |
!if "$(LP64)" == "1" |
|
66 |
ARCH_TEXT=64-Bit |
|
67 |
!if "$(ARCH)" == "x86" |
|
68 |
BUILDARCH=amd64 |
|
69 |
!else |
|
70 |
BUILDARCH=ia64 |
|
71 |
!endif |
|
72 |
!endif |
|
73 |
!endif |
|
74 |
||
75 |
!if "$(BUILDARCH)" != "ia64" |
|
76 |
!ifndef CC_INTERP |
|
7119 | 77 |
!ifndef FORCE_TIERED |
1 | 78 |
FORCE_TIERED=1 |
79 |
!endif |
|
80 |
!endif |
|
7119 | 81 |
!endif |
1 | 82 |
|
83 |
!if "$(BUILDARCH)" == "amd64" |
|
84 |
Platform_arch=x86 |
|
85 |
Platform_arch_model=x86_64 |
|
86 |
!endif |
|
87 |
!if "$(BUILDARCH)" == "i486" |
|
88 |
Platform_arch=x86 |
|
89 |
Platform_arch_model=x86_32 |
|
90 |
!endif |
|
91 |
||
92 |
# Supply these from the command line or the environment |
|
93 |
# It doesn't make sense to default this one |
|
94 |
Variant= |
|
95 |
# It doesn't make sense to default this one |
|
96 |
WorkSpace= |
|
97 |
||
98 |
variantDir = windows_$(BUILDARCH)_$(Variant) |
|
99 |
||
100 |
realVariant=$(Variant) |
|
101 |
VARIANT_TEXT=Core |
|
102 |
!if "$(Variant)" == "compiler1" |
|
103 |
VARIANT_TEXT=Client |
|
104 |
!elseif "$(Variant)" == "compiler2" |
|
7119 | 105 |
!if "$(FORCE_TIERED)" == "1" |
1 | 106 |
VARIANT_TEXT=Server |
107 |
realVariant=tiered |
|
108 |
!else |
|
109 |
VARIANT_TEXT=Server |
|
110 |
!endif |
|
111 |
!elseif "$(Variant)" == "tiered" |
|
112 |
VARIANT_TEXT=Tiered |
|
113 |
!endif |
|
114 |
||
115 |
######################################################################### |
|
14815
41114a74463a
7153050: remove crufty '_g' support from HotSpot repo makefiles
dcubed
parents:
12503
diff
changeset
|
116 |
# Parameters for VERSIONINFO resource for jvm.dll. |
1 | 117 |
# These can be overridden via the nmake.exe command line. |
118 |
# They are overridden by RE during the control builds. |
|
119 |
# |
|
24238 | 120 |
!include "$(WorkSpace)/make/jdk_version" |
1 | 121 |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
122 |
# Define HOTSPOT_VM_DISTRO based on settings in make/openjdk_distro |
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
123 |
# or make/hotspot_distro. |
1 | 124 |
!ifndef HOTSPOT_VM_DISTRO |
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
125 |
!if exists($(WorkSpace)\src\closed) |
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
126 |
!include $(WorkSpace)\make\hotspot_distro |
1 | 127 |
!else |
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
128 |
!include $(WorkSpace)\make\openjdk_distro |
1 | 129 |
!endif |
130 |
!endif |
|
131 |
||
132 |
HS_FILEDESC=$(HOTSPOT_VM_DISTRO) $(ARCH_TEXT) $(VARIANT_TEXT) VM |
|
133 |
||
134 |
# JDK ProductVersion: |
|
135 |
# 1.5.0_<wx>-b<yz> will have DLL version 5.0.wx*10.yz |
|
136 |
# Thus, 1.5.0_10-b04 will be 5.0.100.4 |
|
137 |
# 1.6.0-b01 will be 6.0.0.1 |
|
138 |
# 1.6.0_01a-b02 will be 6.0.11.2 |
|
139 |
# |
|
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
140 |
# STANDALONE_JDK_* variables are defined in make/jdk_version or on command line |
6453 | 141 |
# |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
142 |
!if "$(JDK_VER)" == "" |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
143 |
JDK_VER=$(STANDALONE_JDK_MAJOR_VER),$(STANDALONE_JDK_MINOR_VER),$(STANDALONE_JDK_SECURITY_VER),$(STANDALONE_JDK_PATCH_VER) |
1 | 144 |
!endif |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
145 |
!if "$(JDK_DOTVER)" == "" |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
146 |
JDK_DOTVER=$(STANDALONE_JDK_MAJOR_VER).$(STANDALONE_JDK_MINOR_VER).$(STANDALONE_JDK_SECURITY_VER).$(STANDALONE_JDK_PATCH_VER) |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
147 |
!endif |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
148 |
!if "$(VERSION_SHORT)" == "" |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
149 |
VERSION_SHORT=$(STANDALONE_JDK_MAJOR_VER).$(STANDALONE_JDK_MINOR_VER).$(STANDALONE_JDK_SECURITY_VER) |
1 | 150 |
!endif |
151 |
||
24238 | 152 |
HS_VER=$(JDK_VER) |
153 |
HS_DOTVER=$(JDK_DOTVER) |
|
1 | 154 |
|
155 |
!if "$(HOTSPOT_RELEASE_VERSION)" == "" |
|
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
156 |
HOTSPOT_RELEASE_VERSION=$(VERSION_STRING) |
1 | 157 |
!endif |
158 |
||
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
159 |
!if "$(HOTSPOT_VERSION_STRING)" == "" |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
160 |
HOTSPOT_VERSION_STRING=$(HOTSPOT_RELEASE_VERSION) |
1 | 161 |
!endif |
162 |
||
163 |
# End VERSIONINFO parameters |
|
164 |
||
18025 | 165 |
# if hotspot-only build and/or OPENJDK isn't passed down, need to set OPENJDK |
166 |
!ifndef OPENJDK |
|
167 |
!if !exists($(WorkSpace)\src\closed) |
|
168 |
OPENJDK=true |
|
169 |
!endif |
|
170 |
!endif |
|
1 | 171 |
|
172 |
# We don't support SA on ia64, and we can't |
|
6453 | 173 |
# build it if we are using a version of Vis Studio |
1 | 174 |
# older than .Net 2003. |
175 |
# SA_INCLUDE and SA_LIB are hold-overs from a previous |
|
176 |
# implementation in which we could build SA using |
|
177 |
# Debugging Tools For Windows, in which the .h/.lib files |
|
178 |
# and the .dlls are in different places than |
|
179 |
# they are for Vis Studio .Net 2003. |
|
180 |
# If that code ever needs to be resurrected, these vars |
|
181 |
# can be set here. They are used in makefiles/sa.make. |
|
182 |
||
183 |
checkSA:: |
|
184 |
||
185 |
!if "$(BUILD_WIN_SA)" != "1" |
|
186 |
checkSA:: |
|
187 |
@echo Not building SA: BUILD_WIN_SA != 1 |
|
188 |
||
189 |
!elseif "$(ARCH)" == "ia64" |
|
190 |
BUILD_WIN_SA = 0 |
|
191 |
checkSA:: |
|
192 |
@echo Not building SA: ARCH = ia64 |
|
193 |
||
194 |
!endif # ! "$(BUILD_WIN_SA)" != "1" |
|
195 |
||
196 |
######################################################################### |
|
197 |
||
198 |
defaultTarget: product |
|
199 |
||
200 |
# The product or release build is an optimized build, and is the default |
|
201 |
||
202 |
# note that since all the build targets depend on local.make that BUILDARCH |
|
203 |
# and Platform_arch and Platform_arch_model will get set in local.make |
|
204 |
# and there is no need to pass them thru here on the command line |
|
205 |
# |
|
206 |
product release optimized: checks $(variantDir) $(variantDir)\local.make sanity |
|
207 |
cd $(variantDir) |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
208 |
nmake -nologo -f $(WorkSpace)\make\windows\makefiles\top.make BUILD_FLAVOR=product ARCH=$(ARCH) |
1 | 209 |
|
17006 | 210 |
# The debug build is an optional build |
211 |
debug: checks $(variantDir) $(variantDir)\local.make sanity |
|
1 | 212 |
cd $(variantDir) |
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
213 |
nmake -nologo -f $(WorkSpace)\make\windows\makefiles\top.make BUILD_FLAVOR=debug ARCH=$(ARCH) |
1 | 214 |
fastdebug: checks $(variantDir) $(variantDir)\local.make sanity |
215 |
cd $(variantDir) |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
216 |
nmake -nologo -f $(WorkSpace)\make\windows\makefiles\top.make BUILD_FLAVOR=fastdebug ARCH=$(ARCH) |
1 | 217 |
|
5087
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
1609
diff
changeset
|
218 |
# target to create just the directory structure |
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
1609
diff
changeset
|
219 |
tree: checks $(variantDir) $(variantDir)\local.make sanity |
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
1609
diff
changeset
|
220 |
mkdir $(variantDir)\product |
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
1609
diff
changeset
|
221 |
mkdir $(variantDir)\debug |
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
1609
diff
changeset
|
222 |
mkdir $(variantDir)\fastdebug |
72635506e447
6923488: 4/4 need minor tweaks to HotSpot build for Cygwin
dcubed
parents:
1609
diff
changeset
|
223 |
|
1 | 224 |
sanity: |
225 |
@ echo; |
|
226 |
@ cd $(variantDir) |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
227 |
@ nmake -nologo -f $(WorkSpace)\make\windows\makefiles\sanity.make |
1 | 228 |
@ cd .. |
229 |
@ echo; |
|
230 |
||
231 |
clean: checkVariant |
|
232 |
- rm -r -f $(variantDir) |
|
233 |
||
234 |
$(variantDir): |
|
235 |
mkdir $(variantDir) |
|
236 |
||
237 |
$(variantDir)\local.make: checks |
|
238 |
@ echo # Generated file > $@ |
|
239 |
@ echo Variant=$(realVariant) >> $@ |
|
240 |
@ echo WorkSpace=$(WorkSpace) >> $@ |
|
241 |
@ echo BootStrapDir=$(BootStrapDir) >> $@ |
|
9411 | 242 |
@ if "$(USERNAME)" NEQ "" echo BuildUser=$(USERNAME) >> $@ |
1 | 243 |
@ echo HS_VER=$(HS_VER) >> $@ |
244 |
@ echo HS_DOTVER=$(HS_DOTVER) >> $@ |
|
245 |
@ echo HS_COMPANY=$(COMPANY_NAME) >> $@ |
|
246 |
@ echo HS_FILEDESC=$(HS_FILEDESC) >> $@ |
|
247 |
@ echo HOTSPOT_VM_DISTRO=$(HOTSPOT_VM_DISTRO) >> $@ |
|
18025 | 248 |
@ if "$(OPENJDK)" NEQ "" echo OPENJDK=$(OPENJDK) >> $@ |
1 | 249 |
@ echo HS_COPYRIGHT=$(HOTSPOT_VM_COPYRIGHT) >> $@ |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
250 |
@ echo HS_NAME=$(PRODUCT_NAME) $(VERSION_SHORT) >> $@ |
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
251 |
@ echo HOTSPOT_VERSION_STRING=$(HOTSPOT_VERSION_STRING) >> $@ |
1 | 252 |
@ echo BUILD_WIN_SA=$(BUILD_WIN_SA) >> $@ |
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
253 |
@ echo SA_BUILD_VERSION=$(HOTSPOT_VERSION_STRING) >> $@ |
1 | 254 |
@ echo SA_INCLUDE=$(SA_INCLUDE) >> $@ |
255 |
@ echo SA_LIB=$(SA_LIB) >> $@ |
|
256 |
@ echo JDK_VER=$(JDK_VER) >> $@ |
|
257 |
@ echo JDK_DOTVER=$(JDK_DOTVER) >> $@ |
|
33957
39113ae98993
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
25639
diff
changeset
|
258 |
@ echo VERSION_STRING=$(VERSION_STRING) >> $@ |
1 | 259 |
@ echo BUILDARCH=$(BUILDARCH) >> $@ |
260 |
@ echo Platform_arch=$(Platform_arch) >> $@ |
|
261 |
@ echo Platform_arch_model=$(Platform_arch_model) >> $@ |
|
11955
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
9411
diff
changeset
|
262 |
@ echo CXX=$(CXX) >> $@ |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
9411
diff
changeset
|
263 |
@ echo LD=$(LD) >> $@ |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
9411
diff
changeset
|
264 |
@ echo MT=$(MT) >> $@ |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
9411
diff
changeset
|
265 |
@ echo RC=$(RC) >> $@ |
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
266 |
@ sh $(WorkSpace)/make/windows/get_msc_ver.sh >> $@ |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
9411
diff
changeset
|
267 |
@ if "$(ENABLE_FULL_DEBUG_SYMBOLS)" NEQ "" echo ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS) >> $@ |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
9411
diff
changeset
|
268 |
@ if "$(ZIP_DEBUGINFO_FILES)" NEQ "" echo ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES) >> $@ |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
9411
diff
changeset
|
269 |
@ if "$(RM)" NEQ "" echo RM=$(RM) >> $@ |
25639
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
24238
diff
changeset
|
270 |
@ if "$(CP)" NEQ "" echo CP=$(CP) >> $@ |
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
24238
diff
changeset
|
271 |
@ if "$(MV)" NEQ "" echo MV=$(MV) >> $@ |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
9411
diff
changeset
|
272 |
@ if "$(ZIPEXE)" NEQ "" echo ZIPEXE=$(ZIPEXE) >> $@ |
1 | 273 |
|
274 |
checks: checkVariant checkWorkSpace checkSA |
|
275 |
||
276 |
checkVariant: |
|
16447 | 277 |
@ if "$(Variant)"=="" echo Need to specify "Variant=[tiered|compiler2|compiler1|core]" && false |
278 |
@ if "$(Variant)" NEQ "tiered" if "$(Variant)" NEQ "compiler2" if "$(Variant)" NEQ "compiler1" if "$(Variant)" NEQ "core" \ |
|
279 |
echo Need to specify "Variant=[tiered|compiler2|compiler1|core]" && false |
|
1 | 280 |
|
281 |
checkWorkSpace: |
|
282 |
@ if "$(WorkSpace)"=="" echo Need to specify "WorkSpace=..." && false |
|
283 |
||
284 |
checkBuildID: |
|
285 |
@ if "$(BuildID)"=="" echo Need to specify "BuildID=..." && false |