author | ykantser |
Mon, 07 Apr 2014 16:13:43 +0200 | |
changeset 23726 | 2f18b12acbdf |
parent 22876 | 57aa8995d43b |
child 23507 | b4339e4c239b |
permissions | -rw-r--r-- |
1 | 1 |
# |
15432 | 2 |
# Copyright (c) 2005, 2013, 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:
4733
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4733
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:
4733
diff
changeset
|
21 |
# questions. |
17006 | 22 |
# |
1 | 23 |
# |
24 |
||
25 |
# Top level gnumake file for hotspot builds |
|
26 |
# |
|
27 |
# Default is to build the both product images and construct an export dir. |
|
28 |
# The default export directory name is `pwd`/export-$(PLATFORM). |
|
29 |
# |
|
30 |
# Use: 'gnumake help' for more information. |
|
31 |
# |
|
32 |
# This makefile uses the default settings for where to find compilers and |
|
33 |
# tools, and obeys the ALT_* variable settings used by the other JDK |
|
34 |
# workspaces. |
|
35 |
# |
|
36 |
||
37 |
# Expected/optional make variables defined on make command line: |
|
38 |
# LP64=1 or ARCH_DATA_MODEL=64 for 64bit build |
|
39 |
# |
|
40 |
# Expected/optional make variables or environment variables: |
|
41 |
# ALT_SLASH_JAVA Location of /java or J: |
|
42 |
# ALT_BOOTDIR Previous JDK home directory for javac compiler |
|
43 |
# ALT_OUTPUTDIR Output directory to use for hotspot build |
|
44 |
# ALT_EXPORT_PATH Directory to export hotspot build to |
|
45 |
# ALT_JDK_IMPORT_PATH Current JDK build (only for create_jdk rules) |
|
8307
edbc4c94fd00
7018429: JPRT: Update Makefile to use ALT_JDK_TARGET_IMPORT_PATH for copying JDK
dholmes
parents:
8114
diff
changeset
|
46 |
# ALT_JDK_TARGET_IMPORT_PATH Current JDK build when cross-compiling |
1 | 47 |
# ALT_BUILD_WIN_SA Building SA on Windows is disabled by default. |
48 |
# Set ALT_BUILD_WIN_SA=1 to enable building SA on |
|
49 |
# Windows. |
|
50 |
# Version strings and numbers: |
|
51 |
# JDK_VERSION Current JDK version (e.g. 1.6.0) |
|
52 |
# PREVIOUS_JDK_VERSION Previous (bootdir) JDK version (e.g. 1.5.0) |
|
53 |
# FULL_VERSION Full version string to use (e.g. "1.6.0-ea-b42") |
|
54 |
# |
|
55 |
# Version strings and numbers especially needed on Windows: |
|
56 |
# COOKED_JDK_UPDATE_VERSION Just the update release number (e.g. 02) |
|
57 |
# COOKED_BUILD_NUMBER Just the build number (e.g. 42) |
|
58 |
# JDK_MKTG_VERSION Marketing JDK version (e.g. 6.0) |
|
59 |
# JDK_MAJOR_VERSION Major number for version (e.g. 1) always 1? |
|
60 |
# JDK_MINOR_VERSION Minor number for version (e.g. 6) |
|
61 |
# JDK_MICRO_VERSION Micro number for version (e.g. 0) |
|
62 |
# |
|
63 |
||
64 |
# Default is build both product fastdebug and create export area |
|
65 |
||
66 |
# Allow to build HotSpot in local directory from sources specified by GAMMADIR. |
|
67 |
# After make/defs.make GAMMADIR is defined. |
|
68 |
ifdef GAMMADIR |
|
69 |
ifndef ALT_OUTPUTDIR |
|
70 |
ALT_OUTPUTDIR := $(shell pwd) |
|
71 |
endif |
|
72 |
include $(GAMMADIR)/make/defs.make |
|
73 |
else |
|
74 |
include defs.make |
|
75 |
endif |
|
76 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
77 |
include $(GAMMADIR)/make/altsrc.make |
1 | 78 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
79 |
-include $(HS_ALT_MAKE)/Makefile.make |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
80 |
|
1 | 81 |
ifneq ($(ALT_OUTPUTDIR),) |
82 |
ALT_OUT=ALT_OUTPUTDIR=$(ALT_OUTPUTDIR) |
|
83 |
else |
|
84 |
ALT_OUT= |
|
85 |
endif |
|
86 |
||
87 |
# Typical C1/C2 targets made available with this Makefile |
|
17006 | 88 |
C1_VM_TARGETS=product1 fastdebug1 optimized1 debug1 |
89 |
C2_VM_TARGETS=product fastdebug optimized debug |
|
22805 | 90 |
CORE_VM_TARGETS=productcore fastdebugcore optimizedcore debugcore |
17006 | 91 |
ZERO_VM_TARGETS=productzero fastdebugzero optimizedzero debugzero |
92 |
SHARK_VM_TARGETS=productshark fastdebugshark optimizedshark debugshark |
|
93 |
MINIMAL1_VM_TARGETS=productminimal1 fastdebugminimal1 debugminimal1 |
|
1 | 94 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
95 |
COMMON_VM_PRODUCT_TARGETS=product product1 docs export_product |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
96 |
COMMON_VM_FASTDEBUG_TARGETS=fastdebug fastdebug1 docs export_fastdebug |
17006 | 97 |
COMMON_VM_DEBUG_TARGETS=debug debug1 docs export_debug |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
98 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
99 |
# JDK directory list |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
100 |
JDK_DIRS=bin include jre lib demo |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
101 |
|
1 | 102 |
all: all_product all_fastdebug |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
103 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
104 |
ifeq ($(JVM_VARIANT_MINIMAL1),true) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
105 |
all_product: productminimal1 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
106 |
all_fastdebug: fastdebugminimal1 |
17006 | 107 |
all_debug: debugminimal1 |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
108 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
109 |
|
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
110 |
ifdef BUILD_CLIENT_ONLY |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
111 |
all_product: product1 docs export_product |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
112 |
all_fastdebug: fastdebug1 docs export_fastdebug |
17006 | 113 |
all_debug: debug1 docs export_debug |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
114 |
else |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
115 |
ifeq ($(MACOSX_UNIVERSAL),true) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
116 |
all_product: universal_product |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
117 |
all_fastdebug: universal_fastdebug |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
118 |
all_debug: universal_debug |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
119 |
else |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
120 |
all_product: $(COMMON_VM_PRODUCT_TARGETS) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
121 |
all_fastdebug: $(COMMON_VM_FASTDEBUG_TARGETS) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
122 |
all_debug: $(COMMON_VM_DEBUG_TARGETS) |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
123 |
endif |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
124 |
endif |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
125 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
126 |
all_optimized: optimized optimized1 docs export_optimized |
1 | 127 |
|
4013 | 128 |
allzero: all_productzero all_fastdebugzero |
129 |
all_productzero: productzero docs export_product |
|
130 |
all_fastdebugzero: fastdebugzero docs export_fastdebug |
|
17006 | 131 |
all_debugzero: debugzero docs export_debug |
4013 | 132 |
all_optimizedzero: optimizedzero docs export_optimized |
133 |
||
6187 | 134 |
allshark: all_productshark all_fastdebugshark |
135 |
all_productshark: productshark docs export_product |
|
136 |
all_fastdebugshark: fastdebugshark docs export_fastdebug |
|
17006 | 137 |
all_debugshark: debugshark docs export_debug |
6187 | 138 |
all_optimizedshark: optimizedshark docs export_optimized |
139 |
||
22805 | 140 |
allcore: all_productcore all_fastdebugcore |
141 |
all_productcore: productcore docs export_product |
|
142 |
all_fastdebugcore: fastdebugcore docs export_fastdebug |
|
143 |
all_debugcore: debugcore docs export_debug |
|
144 |
all_optimizedcore: optimizedcore docs export_optimized |
|
145 |
||
1 | 146 |
# Do everything |
147 |
world: all create_jdk |
|
148 |
||
149 |
# Build or export docs |
|
150 |
docs: |
|
151 |
ifeq ($(OSNAME),windows) |
|
152 |
@$(ECHO) "No docs ($(VM_TARGET)) for windows" |
|
153 |
else |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
154 |
# We specify 'BUILD_FLAVOR=product' so that the proper |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
155 |
# ENABLE_FULL_DEBUG_SYMBOLS value is used. |
1 | 156 |
$(CD) $(OUTPUTDIR); \ |
157 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
158 |
$(MAKE_ARGS) BUILD_FLAVOR=product docs |
1 | 159 |
endif |
160 |
||
17382 | 161 |
# Output directories |
162 |
C1_DIR =$(OUTPUTDIR)/$(VM_PLATFORM)_compiler1 |
|
163 |
C2_DIR =$(OUTPUTDIR)/$(VM_PLATFORM)_compiler2 |
|
22805 | 164 |
CORE_DIR =$(OUTPUTDIR)/$(VM_PLATFORM)_core |
17382 | 165 |
MINIMAL1_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_minimal1 |
166 |
ZERO_DIR =$(OUTPUTDIR)/$(VM_PLATFORM)_zero |
|
167 |
SHARK_DIR =$(OUTPUTDIR)/$(VM_PLATFORM)_shark |
|
168 |
||
1 | 169 |
# Build variation of hotspot |
170 |
$(C1_VM_TARGETS): |
|
171 |
$(CD) $(GAMMADIR)/make; \ |
|
17382 | 172 |
$(MAKE) BUILD_DIR=$(C1_DIR) BUILD_FLAVOR=$(@:%1=%) VM_TARGET=$@ generic_build1 $(ALT_OUT) |
1 | 173 |
|
174 |
$(C2_VM_TARGETS): |
|
175 |
$(CD) $(GAMMADIR)/make; \ |
|
17382 | 176 |
$(MAKE) BUILD_DIR=$(C2_DIR) BUILD_FLAVOR=$@ VM_TARGET=$@ generic_build2 $(ALT_OUT) |
1 | 177 |
|
22805 | 178 |
$(CORE_VM_TARGETS): |
179 |
$(CD) $(GAMMADIR)/make; \ |
|
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
180 |
$(MAKE) BUILD_DIR=$(CORE_DIR) BUILD_FLAVOR=$(@:%core=%) VM_TARGET=$@ generic_buildcore $(ALT_OUT) |
22805 | 181 |
|
4013 | 182 |
$(ZERO_VM_TARGETS): |
183 |
$(CD) $(GAMMADIR)/make; \ |
|
17382 | 184 |
$(MAKE) BUILD_DIR=$(ZERO_DIR) BUILD_FLAVOR=$(@:%zero=%) VM_TARGET=$@ generic_buildzero $(ALT_OUT) |
4013 | 185 |
|
6187 | 186 |
$(SHARK_VM_TARGETS): |
187 |
$(CD) $(GAMMADIR)/make; \ |
|
17382 | 188 |
$(MAKE) BUILD_DIR=$(SHARK_DIR) BUILD_FLAVOR=$(@:%shark=%) VM_TARGET=$@ generic_buildshark $(ALT_OUT) |
6187 | 189 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
190 |
$(MINIMAL1_VM_TARGETS): |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
191 |
$(CD) $(GAMMADIR)/make; \ |
17382 | 192 |
$(MAKE) BUILD_DIR=$(MINIMAL1_DIR) BUILD_FLAVOR=$(@:%minimal1=%) VM_TARGET=$@ generic_buildminimal1 $(ALT_OUT) |
193 |
||
194 |
# Install hotspot script in build directory |
|
195 |
HOTSPOT_SCRIPT=$(BUILD_DIR)/$(BUILD_FLAVOR)/hotspot |
|
196 |
$(HOTSPOT_SCRIPT): $(GAMMADIR)/make/hotspot.script |
|
197 |
$(QUIETLY) $(MKDIR) -p $(BUILD_DIR)/$(BUILD_FLAVOR) |
|
198 |
$(QUIETLY) cat $< | sed -e 's|@@LIBARCH@@|$(LIBARCH)|g' | sed -e 's|@@JDK_IMPORT_PATH@@|$(JDK_IMPORT_PATH)|g' > $@ |
|
199 |
$(QUIETLY) chmod +x $@ |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
200 |
|
1 | 201 |
# Build compiler1 (client) rule, different for platforms |
17382 | 202 |
generic_build1: $(HOTSPOT_SCRIPT) |
1 | 203 |
$(MKDIR) -p $(OUTPUTDIR) |
204 |
ifeq ($(OSNAME),windows) |
|
205 |
ifeq ($(ARCH_DATA_MODEL), 32) |
|
206 |
$(CD) $(OUTPUTDIR); \ |
|
207 |
$(NMAKE) -f $(ABS_OS_MAKEFILE) \ |
|
208 |
Variant=compiler1 \ |
|
209 |
WorkSpace=$(ABS_GAMMADIR) \ |
|
210 |
BootStrapDir=$(ABS_BOOTDIR) \ |
|
211 |
BuildUser=$(USERNAME) \ |
|
212 |
$(MAKE_ARGS) $(VM_TARGET:%1=%) |
|
213 |
else |
|
214 |
@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
|
215 |
endif |
|
216 |
else |
|
217 |
ifeq ($(ARCH_DATA_MODEL), 32) |
|
218 |
$(CD) $(OUTPUTDIR); \ |
|
219 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
220 |
$(MAKE_ARGS) $(VM_TARGET) |
|
221 |
else |
|
222 |
@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
|
223 |
endif |
|
224 |
endif |
|
225 |
||
226 |
# Build compiler2 (server) rule, different for platforms |
|
17382 | 227 |
generic_build2: $(HOTSPOT_SCRIPT) |
1 | 228 |
$(MKDIR) -p $(OUTPUTDIR) |
229 |
ifeq ($(OSNAME),windows) |
|
230 |
$(CD) $(OUTPUTDIR); \ |
|
231 |
$(NMAKE) -f $(ABS_OS_MAKEFILE) \ |
|
232 |
Variant=compiler2 \ |
|
233 |
WorkSpace=$(ABS_GAMMADIR) \ |
|
234 |
BootStrapDir=$(ABS_BOOTDIR) \ |
|
235 |
BuildUser=$(USERNAME) \ |
|
236 |
$(MAKE_ARGS) $(VM_TARGET) |
|
237 |
else |
|
238 |
$(CD) $(OUTPUTDIR); \ |
|
239 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
240 |
$(MAKE_ARGS) $(VM_TARGET) |
|
241 |
endif |
|
242 |
||
22805 | 243 |
generic_buildcore: $(HOTSPOT_SCRIPT) |
244 |
ifeq ($(HS_ARCH),ppc) |
|
245 |
ifeq ($(ARCH_DATA_MODEL),64) |
|
246 |
$(MKDIR) -p $(OUTPUTDIR) |
|
247 |
$(CD) $(OUTPUTDIR); \ |
|
248 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
249 |
$(MAKE_ARGS) $(VM_TARGET) |
|
250 |
else |
|
251 |
@$(ECHO) "No ($(VM_TARGET)) for ppc ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
|
252 |
endif |
|
253 |
else |
|
254 |
@$(ECHO) "No ($(VM_TARGET)) for $(HS_ARCH)" |
|
255 |
endif |
|
256 |
||
17382 | 257 |
generic_buildzero: $(HOTSPOT_SCRIPT) |
4013 | 258 |
$(MKDIR) -p $(OUTPUTDIR) |
259 |
$(CD) $(OUTPUTDIR); \ |
|
260 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
261 |
$(MAKE_ARGS) $(VM_TARGET) |
|
262 |
||
17382 | 263 |
generic_buildshark: $(HOTSPOT_SCRIPT) |
6187 | 264 |
$(MKDIR) -p $(OUTPUTDIR) |
265 |
$(CD) $(OUTPUTDIR); \ |
|
266 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
17006 | 267 |
$(MAKE_ARGS) $(VM_TARGET) |
6187 | 268 |
|
17382 | 269 |
generic_buildminimal1: $(HOTSPOT_SCRIPT) |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
270 |
ifeq ($(JVM_VARIANT_MINIMAL1),true) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
271 |
$(MKDIR) -p $(OUTPUTDIR) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
272 |
ifeq ($(ARCH_DATA_MODEL), 32) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
273 |
ifeq ($(OSNAME),windows) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
274 |
$(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" ; |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
275 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
276 |
ifeq ($(OSNAME),solaris) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
277 |
$(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" ; |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
278 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
279 |
$(CD) $(OUTPUTDIR); \ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
280 |
$(MAKE) -f $(ABS_OS_MAKEFILE) $(MAKE_ARGS) $(VM_TARGET) ; |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
281 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
282 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
283 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
284 |
@$(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
285 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
286 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
287 |
@$(ECHO) "Error: trying to build a minimal target but JVM_VARIANT_MINIMAL1 is not true." |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
288 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
289 |
|
1 | 290 |
# Export file rule |
291 |
generic_export: $(EXPORT_LIST) |
|
17382 | 292 |
|
1 | 293 |
export_product: |
17382 | 294 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) generic_export |
1 | 295 |
export_fastdebug: |
17382 | 296 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) EXPORT_SUBDIR=/$(@:export_%=%) generic_export |
1 | 297 |
export_debug: |
17382 | 298 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) EXPORT_SUBDIR=/$(@:export_%=%) generic_export |
1 | 299 |
export_optimized: |
17382 | 300 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) EXPORT_SUBDIR=/$(@:export_%=%) generic_export |
301 |
||
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
302 |
export_product_jdk:: |
17382 | 303 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) generic_export |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
304 |
export_optimized_jdk:: |
17382 | 305 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) generic_export |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
306 |
export_fastdebug_jdk:: |
17382 | 307 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/$(@:export_%_jdk=%) generic_export |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
308 |
export_debug_jdk:: |
17382 | 309 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/$(@:export_%_jdk=%) generic_export |
1 | 310 |
|
311 |
# Export file copy rules |
|
312 |
XUSAGE=$(HS_SRC_DIR)/share/vm/Xusage.txt |
|
17382 | 313 |
DOCS_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_docs |
314 |
C1_BUILD_DIR =$(C1_DIR)/$(BUILD_FLAVOR) |
|
315 |
C2_BUILD_DIR =$(C2_DIR)/$(BUILD_FLAVOR) |
|
22805 | 316 |
CORE_BUILD_DIR =$(CORE_DIR)/$(BUILD_FLAVOR) |
17382 | 317 |
MINIMAL1_BUILD_DIR=$(MINIMAL1_DIR)/$(BUILD_FLAVOR) |
318 |
ZERO_BUILD_DIR =$(ZERO_DIR)/$(BUILD_FLAVOR) |
|
319 |
SHARK_BUILD_DIR =$(SHARK_DIR)/$(BUILD_FLAVOR) |
|
1 | 320 |
|
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
321 |
# Server (C2) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
322 |
ifeq ($(JVM_VARIANT_SERVER), true) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
323 |
# Common |
17382 | 324 |
$(EXPORT_SERVER_DIR)/%.diz: $(C2_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
325 |
$(install-file) |
17382 | 326 |
$(EXPORT_LIB_DIR)/%.jar: $(C2_BUILD_DIR)/../generated/%.jar |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
327 |
$(install-file) |
17382 | 328 |
$(EXPORT_INCLUDE_DIR)/%: $(C2_BUILD_DIR)/../generated/jvmtifiles/% |
1 | 329 |
$(install-file) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
330 |
# Windows |
17382 | 331 |
$(EXPORT_SERVER_DIR)/%.dll: $(C2_BUILD_DIR)/%.dll |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
332 |
$(install-file) |
17382 | 333 |
$(EXPORT_SERVER_DIR)/%.pdb: $(C2_BUILD_DIR)/%.pdb |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
334 |
$(install-file) |
17382 | 335 |
$(EXPORT_SERVER_DIR)/%.map: $(C2_BUILD_DIR)/%.map |
1 | 336 |
$(install-file) |
17382 | 337 |
$(EXPORT_LIB_DIR)/%.lib: $(C2_BUILD_DIR)/%.lib |
1 | 338 |
$(install-file) |
17382 | 339 |
$(EXPORT_JRE_BIN_DIR)/%.diz: $(C2_BUILD_DIR)/%.diz |
1 | 340 |
$(install-file) |
17382 | 341 |
$(EXPORT_JRE_BIN_DIR)/%.dll: $(C2_BUILD_DIR)/%.dll |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
342 |
$(install-file) |
17382 | 343 |
$(EXPORT_JRE_BIN_DIR)/%.pdb: $(C2_BUILD_DIR)/%.pdb |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
344 |
$(install-file) |
17382 | 345 |
$(EXPORT_JRE_BIN_DIR)/%.map: $(C2_BUILD_DIR)/%.map |
1 | 346 |
$(install-file) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
347 |
# Unix |
17382 | 348 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C2_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
1 | 349 |
$(install-file) |
17382 | 350 |
$(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(C2_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
1 | 351 |
$(install-file) |
17382 | 352 |
$(EXPORT_SERVER_DIR)/64/%.$(LIBRARY_SUFFIX): $(C2_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
353 |
$(install-file) |
17382 | 354 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(C2_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
355 |
$(install-file) |
17382 | 356 |
$(EXPORT_SERVER_DIR)/%.debuginfo: $(C2_BUILD_DIR)/%.debuginfo |
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
357 |
$(install-file) |
17382 | 358 |
$(EXPORT_SERVER_DIR)/64/%.debuginfo: $(C2_BUILD_DIR)/%.debuginfo |
1 | 359 |
$(install-file) |
17382 | 360 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(C2_BUILD_DIR)/%.diz |
1 | 361 |
$(install-file) |
17382 | 362 |
$(EXPORT_SERVER_DIR)/64/%.diz: $(C2_BUILD_DIR)/%.diz |
1 | 363 |
$(install-file) |
20686
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
364 |
# MacOS X |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
365 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: $(C2_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
366 |
$(install-dir) |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
367 |
$(EXPORT_SERVER_DIR)/%.dSYM: $(C2_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
368 |
$(install-dir) |
1 | 369 |
endif |
370 |
||
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
371 |
# Client (C1) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
372 |
ifeq ($(JVM_VARIANT_CLIENT), true) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
373 |
# Common |
17382 | 374 |
$(EXPORT_CLIENT_DIR)/%.diz: $(C1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
375 |
$(install-file) |
17382 | 376 |
$(EXPORT_LIB_DIR)/%.jar: $(C1_BUILD_DIR)/../generated/%.jar |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
377 |
$(install-file) |
17382 | 378 |
$(EXPORT_INCLUDE_DIR)/%: $(C1_BUILD_DIR)/../generated/jvmtifiles/% |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
379 |
$(install-file) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
380 |
# Windows |
17382 | 381 |
$(EXPORT_CLIENT_DIR)/%.dll: $(C1_BUILD_DIR)/%.dll |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
382 |
$(install-file) |
17382 | 383 |
$(EXPORT_CLIENT_DIR)/%.pdb: $(C1_BUILD_DIR)/%.pdb |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
384 |
$(install-file) |
17382 | 385 |
$(EXPORT_CLIENT_DIR)/%.map: $(C1_BUILD_DIR)/%.map |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
386 |
$(install-file) |
17382 | 387 |
$(EXPORT_LIB_DIR)/%.lib: $(C1_BUILD_DIR)/%.lib |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
388 |
$(install-file) |
17382 | 389 |
$(EXPORT_JRE_BIN_DIR)/%.diz: $(C1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
390 |
$(install-file) |
17382 | 391 |
$(EXPORT_JRE_BIN_DIR)/%.dll: $(C1_BUILD_DIR)/%.dll |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
392 |
$(install-file) |
17382 | 393 |
$(EXPORT_JRE_BIN_DIR)/%.pdb: $(C1_BUILD_DIR)/%.pdb |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
394 |
$(install-file) |
17382 | 395 |
$(EXPORT_JRE_BIN_DIR)/%.map: $(C1_BUILD_DIR)/%.map |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
396 |
$(install-file) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
397 |
# Unix |
17382 | 398 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
399 |
$(install-file) |
17382 | 400 |
$(EXPORT_CLIENT_DIR)/%.$(LIBRARY_SUFFIX): $(C1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
401 |
$(install-file) |
17382 | 402 |
$(EXPORT_CLIENT_DIR)/64/%.$(LIBRARY_SUFFIX): $(C1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
403 |
$(install-file) |
17382 | 404 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(C1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
405 |
$(install-file) |
17382 | 406 |
$(EXPORT_CLIENT_DIR)/%.debuginfo: $(C1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
407 |
$(install-file) |
17382 | 408 |
$(EXPORT_CLIENT_DIR)/64/%.debuginfo: $(C1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
409 |
$(install-file) |
17382 | 410 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(C1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
411 |
$(install-file) |
17382 | 412 |
$(EXPORT_CLIENT_DIR)/64/%.diz: $(C1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
413 |
$(install-file) |
20686
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
414 |
# MacOS X |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
415 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: $(C1_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
416 |
$(install-dir) |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
417 |
$(EXPORT_CLIENT_DIR)/%.dSYM: $(C1_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
418 |
$(install-dir) |
1 | 419 |
endif |
420 |
||
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
421 |
# Minimal1 |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
422 |
ifeq ($(JVM_VARIANT_MINIMAL1), true) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
423 |
# Common |
17382 | 424 |
$(EXPORT_MINIMAL_DIR)/%.diz: $(MINIMAL1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
425 |
$(install-file) |
17382 | 426 |
$(EXPORT_LIB_DIR)/%.jar: $(MINIMAL1_BUILD_DIR)/../generated/%.jar |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
427 |
$(install-file) |
17382 | 428 |
$(EXPORT_INCLUDE_DIR)/%: $(MINIMAL1_BUILD_DIR)/../generated/jvmtifiles/% |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
429 |
$(install-file) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
430 |
# Windows |
17382 | 431 |
$(EXPORT_MINIMAL_DIR)/%.dll: $(MINIMAL1_BUILD_DIR)/%.dll |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
432 |
$(install-file) |
17382 | 433 |
$(EXPORT_MINIMAL_DIR)/%.pdb: $(MINIMAL1_BUILD_DIR)/%.pdb |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
434 |
$(install-file) |
17382 | 435 |
$(EXPORT_MINIMAL_DIR)/%.map: $(MINIMAL1_BUILD_DIR)/%.map |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
436 |
$(install-file) |
17382 | 437 |
$(EXPORT_LIB_DIR)/%.lib: $(MINIMAL1_BUILD_DIR)/%.lib |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
438 |
$(install-file) |
17382 | 439 |
$(EXPORT_JRE_BIN_DIR)/%.diz: $(MINIMAL1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
440 |
$(install-file) |
17382 | 441 |
$(EXPORT_JRE_BIN_DIR)/%.dll: $(MINIMAL1_BUILD_DIR)/%.dll |
1 | 442 |
$(install-file) |
17382 | 443 |
$(EXPORT_JRE_BIN_DIR)/%.pdb: $(MINIMAL1_BUILD_DIR)/%.pdb |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
444 |
$(install-file) |
17382 | 445 |
$(EXPORT_JRE_BIN_DIR)/%.map: $(MINIMAL1_BUILD_DIR)/%.map |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
446 |
$(install-file) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
447 |
# Unix |
17382 | 448 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(MINIMAL1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
449 |
$(install-file) |
17382 | 450 |
$(EXPORT_MINIMAL_DIR)/%.$(LIBRARY_SUFFIX): $(MINIMAL1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
451 |
$(install-file) |
17382 | 452 |
$(EXPORT_MINIMAL_DIR)/64/%.$(LIBRARY_SUFFIX): $(MINIMAL1_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
453 |
$(install-file) |
17382 | 454 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(MINIMAL1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
455 |
$(install-file) |
17382 | 456 |
$(EXPORT_MINIMAL_DIR)/%.debuginfo: $(MINIMAL1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
457 |
$(install-file) |
17382 | 458 |
$(EXPORT_MINIMAL_DIR)/64/%.debuginfo: $(MINIMAL1_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
459 |
$(install-file) |
17382 | 460 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(MINIMAL1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
461 |
$(install-file) |
17382 | 462 |
$(EXPORT_MINIMAL_DIR)/64/%.diz: $(MINIMAL1_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
463 |
$(install-file) |
20686
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
464 |
# MacOS X does not support Minimal1 config |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
465 |
endif |
1 | 466 |
|
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
467 |
# Zero |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
468 |
ifeq ($(JVM_VARIANT_ZERO), true) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
469 |
# Common |
17382 | 470 |
$(EXPORT_LIB_DIR)/%.jar: $(ZERO_BUILD_DIR)/../generated/%.jar |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
471 |
$(install-file) |
17382 | 472 |
$(EXPORT_INCLUDE_DIR)/%: $(ZERO_BUILD_DIR)/../generated/jvmtifiles/% |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
473 |
$(install-file) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
474 |
# Unix |
17382 | 475 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(ZERO_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
476 |
$(install-file) |
17382 | 477 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(ZERO_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
478 |
$(install-file) |
17382 | 479 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(ZERO_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
480 |
$(install-file) |
17382 | 481 |
$(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(ZERO_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
482 |
$(install-file) |
17382 | 483 |
$(EXPORT_SERVER_DIR)/%.debuginfo: $(ZERO_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
484 |
$(install-file) |
17382 | 485 |
$(EXPORT_SERVER_DIR)/%.diz: $(ZERO_BUILD_DIR)/%.diz |
1 | 486 |
$(install-file) |
20686
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
487 |
# MacOS X |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
488 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: $(ZERO_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
489 |
$(install-dir) |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
490 |
$(EXPORT_SERVER_DIR)/%.dSYM: $(ZERO_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
491 |
$(install-dir) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
492 |
endif |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
493 |
|
22805 | 494 |
# Core |
495 |
ifeq ($(JVM_VARIANT_CORE), true) |
|
496 |
# Common |
|
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
497 |
$(EXPORT_LIB_DIR)/%.jar: $(CORE_BUILD_DIR)/../generated/%.jar |
22805 | 498 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
499 |
$(EXPORT_INCLUDE_DIR)/%: $(CORE_BUILD_DIR)/../generated/jvmtifiles/% |
22805 | 500 |
$(install-file) |
501 |
# Unix |
|
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
502 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(CORE_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
22805 | 503 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
504 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(CORE_BUILD_DIR)/%.debuginfo |
22805 | 505 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
506 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(CORE_BUILD_DIR)/%.diz |
22805 | 507 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
508 |
$(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(CORE_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
22805 | 509 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
510 |
$(EXPORT_SERVER_DIR)/%.debuginfo: $(CORE_BUILD_DIR)/%.debuginfo |
22805 | 511 |
$(install-file) |
22818
34cd99df9940
8019922: PPC64 (part 8): Implement Linux/PPC64 support in HotSpot makefiles
simonis
parents:
22808
diff
changeset
|
512 |
$(EXPORT_SERVER_DIR)/%.diz: $(CORE_BUILD_DIR)/%.diz |
22805 | 513 |
$(install-file) |
514 |
endif |
|
515 |
||
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
516 |
# Shark |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
517 |
ifeq ($(JVM_VARIANT_ZEROSHARK), true) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
518 |
# Common |
17382 | 519 |
$(EXPORT_LIB_DIR)/%.jar: $(SHARK_BUILD_DIR)/../generated/%.jar |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
520 |
$(install-file) |
17382 | 521 |
$(EXPORT_INCLUDE_DIR)/%: $(SHARK_BUILD_DIR)/../generated/jvmtifiles/% |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
522 |
$(install-file) |
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
523 |
# Unix |
17382 | 524 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(SHARK_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
525 |
$(install-file) |
17382 | 526 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo): $(SHARK_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
527 |
$(install-file) |
17382 | 528 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(SHARK_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
529 |
$(install-file) |
17382 | 530 |
$(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(SHARK_BUILD_DIR)/%.$(LIBRARY_SUFFIX) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
531 |
$(install-file) |
17382 | 532 |
$(EXPORT_SERVER_DIR)/%.debuginfo: $(SHARK_BUILD_DIR)/%.debuginfo |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
533 |
$(install-file) |
17382 | 534 |
$(EXPORT_SERVER_DIR)/%.diz: $(SHARK_BUILD_DIR)/%.diz |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
535 |
$(install-file) |
20686
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
536 |
# MacOS X |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
537 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.dSYM: $(SHARK_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
538 |
$(install-dir) |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
539 |
$(EXPORT_SERVER_DIR)/%.dSYM: $(SHARK_BUILD_DIR)/%.dSYM |
1fa9a75192c3
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
18025
diff
changeset
|
540 |
$(install-dir) |
17010
62219bdec449
7172922: export_ makefile targets do not work unless all supported variants are built
twisti
parents:
17006
diff
changeset
|
541 |
endif |
1 | 542 |
|
4732
a70548606f73
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
670
diff
changeset
|
543 |
$(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/code/% |
a70548606f73
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
670
diff
changeset
|
544 |
$(install-file) |
a70548606f73
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
670
diff
changeset
|
545 |
|
1 | 546 |
$(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/prims/% |
547 |
$(install-file) |
|
548 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
549 |
HS_JNI_ARCH_SRC=$(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(HS_ARCH)/vm/jni_$(HS_ARCH).h) |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
550 |
$(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h: $(HS_JNI_ARCH_SRC) |
1 | 551 |
$(install-file) |
552 |
||
553 |
$(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/services/% |
|
554 |
$(install-file) |
|
555 |
||
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
556 |
JFR_EXISTS=$(shell if [ -d $(HS_ALT_SRC) ]; then echo 1; else echo 0; fi) |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
557 |
# export jfr.h |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
558 |
ifeq ($JFR_EXISTS,1) |
18025 | 559 |
$(EXPORT_INCLUDE_DIR)/%: $(HS_ALT_SRC)/share/vm/jfr/% |
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
560 |
$(install-file) |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
561 |
else |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
562 |
$(EXPORT_INCLUDE_DIR)/jfr.h: |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
563 |
endif |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
564 |
|
1 | 565 |
# Doc files (jvmti.html) |
566 |
$(EXPORT_DOCS_DIR)/platform/jvmti/%: $(DOCS_DIR)/% |
|
567 |
$(install-file) |
|
568 |
||
569 |
# Xusage file |
|
15432 | 570 |
$(EXPORT_SERVER_DIR)/Xusage.txt $(EXPORT_CLIENT_DIR)/Xusage.txt $(EXPORT_MINIMAL_DIR)/Xusage.txt: $(XUSAGE) |
1 | 571 |
$(prep-target) |
572 |
$(RM) $@.temp |
|
573 |
$(SED) 's/\(separated by \)[;:]/\1$(PATH_SEP)/g' $< > $@.temp |
|
574 |
$(MV) $@.temp $@ |
|
575 |
||
576 |
# |
|
577 |
# Clean rules |
|
578 |
# |
|
579 |
clobber clean: clean_build clean_export clean_jdk |
|
580 |
clean_build: |
|
581 |
$(RM) -r $(C1_DIR) |
|
582 |
$(RM) -r $(C2_DIR) |
|
22805 | 583 |
$(RM) -r $(CORE_DIR) |
4013 | 584 |
$(RM) -r $(ZERO_DIR) |
6187 | 585 |
$(RM) -r $(SHARK_DIR) |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
586 |
$(RM) -r $(MINIMAL1_DIR) |
1 | 587 |
clean_export: |
588 |
$(RM) -r $(EXPORT_PATH) |
|
589 |
clean_jdk: |
|
590 |
$(RM) -r $(JDK_IMAGE_DIR) |
|
591 |
||
592 |
# |
|
593 |
# Create JDK and place this build into it |
|
594 |
# |
|
595 |
create_jdk: copy_jdk update_jdk |
|
596 |
||
597 |
update_jdk: export_product_jdk export_fastdebug_jdk test_jdk |
|
598 |
||
599 |
copy_jdk: $(JDK_IMAGE_DIR)/jre/lib/rt.jar |
|
600 |
||
601 |
$(JDK_IMAGE_DIR)/jre/lib/rt.jar: |
|
602 |
$(RM) -r $(JDK_IMAGE_DIR) |
|
603 |
$(MKDIR) -p $(JDK_IMAGE_DIR) |
|
604 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
605 |
$(TAR) -cf - *) | \ |
|
606 |
($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -) |
|
607 |
||
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
608 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
609 |
# Testing the built JVM |
22734
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20686
diff
changeset
|
610 |
RUN_JVM=JAVA_HOME=$(JDK_IMPORT_PATH) $(JDK_IMPORT_PATH)/bin/java -d$(ARCH_DATA_MODEL) -XXaltjvm=$(ALTJVM_DIR) -Dsun.java.launcher.is_altjvm=true |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
611 |
generic_test: |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
612 |
@$(ECHO) "Running with: $(ALTJVM_DIR)" |
22734
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20686
diff
changeset
|
613 |
@$(RUN_JVM) -Xinternalversion |
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20686
diff
changeset
|
614 |
@$(RUN_JVM) -showversion -help |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
615 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
616 |
# C2 test targets |
17006 | 617 |
test_product test_optimized test_fastdebug test_debug: |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
618 |
@$(MAKE) generic_test ALTJVM_DIR="$(C2_DIR)/$(@:test_%=%)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
619 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
620 |
# C1 test targets |
17006 | 621 |
test_product1 test_optimized1 test_fastdebug1 test_debug1: |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
622 |
ifeq ($(ARCH_DATA_MODEL), 32) |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
623 |
@$(MAKE) generic_test ALTJVM_DIR="$(C1_DIR)/$(@:test_%1=%)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
624 |
else |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
625 |
@$(ECHO) "No compiler1 ($(@:test_%=%)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
626 |
endif |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
627 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
628 |
# Zero test targets |
17006 | 629 |
test_productzero test_optimizedzero test_fastdebugzero test_debugzero: |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
630 |
@$(MAKE) generic_test ALTJVM_DIR="$(ZERO_DIR)/$(@:test_%zero=%)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
631 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
632 |
# Shark test targets |
17006 | 633 |
test_productshark test_optimizedshark test_fastdebugshark test_debugshark: |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
634 |
@$(MAKE) generic_test ALTJVM_DIR="$(SHARK_DIR)/$(@:test_%shark=%)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
635 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
636 |
# Minimal1 test targets |
17006 | 637 |
test_productminimal1 test_optimizedminimal1 test_fastdebugminimal1 test_debugminimal1: |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
638 |
@$(MAKE) generic_test ALTJVM_DIR="$(MINIMAL1_DIR)/$(@:test_%minimal1=%)" |
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
639 |
|
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
15793
diff
changeset
|
640 |
|
1 | 641 |
test_jdk: |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
642 |
ifeq ($(JVM_VARIANT_CLIENT), true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
643 |
$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -client -Xinternalversion |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
644 |
$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -client -version |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
645 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
646 |
ifeq ($(findstring true, $(JVM_VARIANT_SERVER)\ |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
647 |
$(JVM_VARIANT_ZERO)$(JVM_VARIANT_ZEROSHARK)), true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
648 |
$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -server -Xinternalversion |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
649 |
$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -server -version |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
650 |
endif |
1 | 651 |
|
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
652 |
copy_product_jdk:: |
1 | 653 |
$(RM) -r $(JDK_IMAGE_DIR) |
654 |
$(MKDIR) -p $(JDK_IMAGE_DIR) |
|
655 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
656 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 657 |
($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -) |
658 |
||
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
659 |
copy_fastdebug_jdk:: |
1 | 660 |
$(RM) -r $(JDK_IMAGE_DIR)/fastdebug |
661 |
$(MKDIR) -p $(JDK_IMAGE_DIR)/fastdebug |
|
662 |
if [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \ |
|
663 |
($(CD) $(JDK_IMPORT_PATH)/fastdebug && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
664 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 665 |
($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \ |
666 |
else \ |
|
667 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
668 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 669 |
($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \ |
670 |
fi |
|
671 |
||
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
672 |
copy_debug_jdk:: |
1 | 673 |
$(RM) -r $(JDK_IMAGE_DIR)/debug |
674 |
$(MKDIR) -p $(JDK_IMAGE_DIR)/debug |
|
675 |
if [ -d $(JDK_IMPORT_PATH)/debug ] ; then \ |
|
676 |
($(CD) $(JDK_IMPORT_PATH)/debug && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
677 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 678 |
($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \ |
679 |
elif [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \ |
|
680 |
($(CD) $(JDK_IMPORT_PATH)/fastdebug && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
681 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 682 |
($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \ |
683 |
else \ |
|
684 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
685 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 686 |
($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \ |
687 |
fi |
|
688 |
||
689 |
# |
|
690 |
# Check target |
|
691 |
# |
|
692 |
check: variable_check |
|
693 |
||
694 |
# |
|
695 |
# Help target |
|
696 |
# |
|
697 |
help: intro_help target_help variable_help notes_help examples_help |
|
698 |
||
699 |
# Intro help message |
|
700 |
intro_help: |
|
701 |
@$(ECHO) \ |
|
17006 | 702 |
"Makefile for the Hotspot workspace." |
1 | 703 |
@$(ECHO) \ |
704 |
"Default behavior is to build and create an export area for the j2se builds." |
|
705 |
||
706 |
# Target help |
|
707 |
target_help: |
|
708 |
@$(ECHO) "help: This help message" |
|
709 |
@$(ECHO) "all: Same as: all_product all_fastdebug" |
|
710 |
@$(ECHO) "world: Same as: all create_jdk" |
|
711 |
@$(ECHO) "all_product: Same as: product product1 export_product" |
|
712 |
@$(ECHO) "all_fastdebug: Same as: fastdebug fastdebug1 export_fastdebug" |
|
17006 | 713 |
@$(ECHO) "all_debug: Same as: debug debug1 export_debug" |
1 | 714 |
@$(ECHO) "all_optimized: Same as: optimized optimized1 export_optimized" |
715 |
@$(ECHO) "clean: Clean all areas" |
|
716 |
@$(ECHO) "export_product: Export product files to EXPORT_PATH" |
|
717 |
@$(ECHO) "export_fastdebug: Export fastdebug files to EXPORT_PATH" |
|
718 |
@$(ECHO) "export_debug: Export debug files to EXPORT_PATH" |
|
719 |
@$(ECHO) "export_optimized: Export optimized files to EXPORT_PATH" |
|
720 |
@$(ECHO) "create_jdk: Create JDK image, export all files into it" |
|
721 |
@$(ECHO) "update_jdk: Update JDK image with fresh exported files" |
|
722 |
@$(ECHO) " " |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
723 |
@$(ECHO) "Other targets are:" |
1 | 724 |
@$(ECHO) " $(C1_VM_TARGETS)" |
725 |
@$(ECHO) " $(C2_VM_TARGETS)" |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
726 |
@$(ECHO) " $(MINIMAL1_VM_TARGETS)" |
1 | 727 |
|
728 |
# Variable help (only common ones used by this workspace) |
|
729 |
variable_help: variable_help_intro variable_list variable_help_end |
|
730 |
variable_help_intro: |
|
731 |
@$(ECHO) "--- Common Variables ---" |
|
732 |
variable_help_end: |
|
733 |
@$(ECHO) " " |
|
734 |
@$(ECHO) "--- Make Arguments ---" |
|
735 |
@$(ECHO) "MAKE_ARGS=$(MAKE_ARGS)" |
|
736 |
||
737 |
# One line descriptions for the variables |
|
738 |
SLASH_JAVA.desc = Root of all build tools, e.g. /java or J: |
|
739 |
OUTPUTDIR.desc = Output directory, default is build/<osname> |
|
740 |
BOOTDIR.desc = JDK used to compile agent java source and test with |
|
741 |
JDK_IMPORT_PATH.desc = Promoted JDK to copy for 'create_jdk' |
|
11784
715f58266a42
7143766: add ALT_JDK_IMAGE_DIR and improve test_jdk
twisti
parents:
11629
diff
changeset
|
742 |
JDK_IMAGE_DIR.desc = Directory to place JDK to copy |
1 | 743 |
EXPORT_PATH.desc = Directory to place files to export for JDK build |
744 |
||
745 |
# Make variables to print out (description and value) |
|
746 |
VARIABLE_PRINTVAL_LIST += \ |
|
747 |
SLASH_JAVA \ |
|
748 |
OUTPUTDIR \ |
|
749 |
BOOTDIR \ |
|
750 |
JDK_IMPORT_PATH \ |
|
11784
715f58266a42
7143766: add ALT_JDK_IMAGE_DIR and improve test_jdk
twisti
parents:
11629
diff
changeset
|
751 |
JDK_IMAGE_DIR \ |
1 | 752 |
EXPORT_PATH |
753 |
||
754 |
# Make variables that should refer to directories that exist |
|
755 |
VARIABLE_CHECKDIR_LIST += \ |
|
756 |
SLASH_JAVA \ |
|
757 |
BOOTDIR \ |
|
758 |
JDK_IMPORT_PATH |
|
759 |
||
760 |
# For pattern rules below, so all are treated the same |
|
761 |
DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval) |
|
762 |
DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir) |
|
763 |
||
764 |
# Complete variable check |
|
765 |
variable_check: $(DO_CHECKDIR_LIST) |
|
766 |
variable_list: $(DO_PRINTVAL_LIST) variable_check |
|
767 |
||
768 |
# Pattern rule for printing out a variable |
|
769 |
%.printval: |
|
770 |
@$(ECHO) " ALT_$* - $($*.desc)" |
|
771 |
@$(ECHO) " $*=$($*)" |
|
772 |
||
773 |
# Pattern rule for checking to see if a variable with a directory exists |
|
774 |
%.checkdir: |
|
775 |
@if [ ! -d $($*) ] ; then \ |
|
776 |
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \ |
|
777 |
fi |
|
778 |
||
779 |
# Pattern rule for checking to see if a variable with a file exists |
|
780 |
%.checkfil: |
|
781 |
@if [ ! -f $($*) ] ; then \ |
|
782 |
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \ |
|
783 |
fi |
|
784 |
||
785 |
# Misc notes on help |
|
786 |
notes_help: |
|
787 |
@$(ECHO) \ |
|
788 |
"--- Notes --- " |
|
789 |
@$(ECHO) \ |
|
790 |
"- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted" |
|
791 |
@$(ECHO) \ |
|
792 |
" builds or previous release JDK builds will work." |
|
793 |
@$(ECHO) \ |
|
794 |
"- The fastest builds have been when the workspace and the BOOTDIR are on" |
|
795 |
@$(ECHO) \ |
|
796 |
" local disk." |
|
797 |
||
798 |
examples_help: |
|
799 |
@$(ECHO) \ |
|
800 |
"--- Examples --- " |
|
801 |
@$(ECHO) \ |
|
802 |
" $(MAKE) all" |
|
803 |
@$(ECHO) \ |
|
804 |
" $(MAKE) world" |
|
805 |
@$(ECHO) \ |
|
17006 | 806 |
" $(MAKE) ALT_BOOTDIR=/opt/java/jdk$(PREVIOUS_JDK_VERSION)" |
1 | 807 |
@$(ECHO) \ |
808 |
" $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk$(JDK_VERSION)" |
|
809 |
||
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
810 |
# Universal build support |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
811 |
ifeq ($(OS_VENDOR), Darwin) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
812 |
ifeq ($(MACOSX_UNIVERSAL),true) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
813 |
include $(GAMMADIR)/make/$(OSNAME)/makefiles/universal.gmk |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
814 |
endif |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
815 |
endif |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
816 |
|
17006 | 817 |
# Compatibility for transition to new naming |
818 |
warn_jvmg_deprecated: |
|
819 |
echo "Warning: The jvmg target has been replaced with debug" |
|
820 |
echo "Warning: Please update your usage" |
|
821 |
||
822 |
jvmg: warn_jvmg_deprecated debug |
|
823 |
||
824 |
jvmg1: warn_jvmg_deprecated debug1 |
|
825 |
||
826 |
jvmgminimal1: warn_jvmg_deprecated debugminimal1 |
|
827 |
||
828 |
jvmgcore: warn_jvmg_deprecated debugcore |
|
829 |
||
830 |
jvmgzero: warn_jvmg_deprecated debugzero |
|
831 |
||
832 |
jvmgshark: warn_jvmg_deprecated debugshark |
|
833 |
||
1 | 834 |
# JPRT rule to build this workspace |
835 |
include $(GAMMADIR)/make/jprt.gmk |
|
836 |
||
837 |
.PHONY: all world clobber clean help $(C1_VM_TARGETS) $(C2_VM_TARGETS) \ |
|
15432 | 838 |
$(MINIMAL1_VM_TARGETS) \ |
839 |
generic_build1 generic_build2 generic_buildminimal1 generic_export \ |
|
1 | 840 |
export_product export_fastdebug export_debug export_optimized \ |
841 |
export_jdk_product export_jdk_fastdebug export_jdk_debug \ |
|
842 |
create_jdk copy_jdk update_jdk test_jdk \ |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
843 |
copy_product_jdk copy_fastdebug_jdk copy_debug_jdk \ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
844 |
$(HS_ALT_MAKE)/Makefile.make |