author | sherman |
Thu, 31 Jan 2013 13:13:14 -0800 | |
changeset 15516 | c2241c14b970 |
parent 14294 | 130e947dfbe6 |
child 15432 | 9d976ca484d8 |
permissions | -rw-r--r-- |
1 | 1 |
# |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
2 |
# Copyright (c) 2005, 2012, 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. |
1 | 22 |
# |
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 |
|
88 |
C1_VM_TARGETS=product1 fastdebug1 optimized1 jvmg1 |
|
89 |
C2_VM_TARGETS=product fastdebug optimized jvmg |
|
90 |
KERNEL_VM_TARGETS=productkernel fastdebugkernel optimizedkernel jvmgkernel |
|
4013 | 91 |
ZERO_VM_TARGETS=productzero fastdebugzero optimizedzero jvmgzero |
6187 | 92 |
SHARK_VM_TARGETS=productshark fastdebugshark optimizedshark jvmgshark |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
93 |
MINIMAL1_VM_TARGETS=productminimal1 fastdebugminimal1 jvmgminimal1 |
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 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
97 |
COMMON_VM_DEBUG_TARGETS=jvmg jvmg1 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 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
107 |
all_debug: jvmgminimal1 |
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 |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
113 |
all_debug: jvmg1 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 |
|
131 |
all_debugzero: jvmgzero docs export_debug |
|
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 |
|
137 |
all_debugshark: jvmgshark docs export_debug |
|
138 |
all_optimizedshark: optimizedshark docs export_optimized |
|
139 |
||
1 | 140 |
# Do everything |
141 |
world: all create_jdk |
|
142 |
||
143 |
# Build or export docs |
|
144 |
docs: |
|
145 |
ifeq ($(OSNAME),windows) |
|
146 |
@$(ECHO) "No docs ($(VM_TARGET)) for windows" |
|
147 |
else |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
148 |
# 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
|
149 |
# ENABLE_FULL_DEBUG_SYMBOLS value is used. |
1 | 150 |
$(CD) $(OUTPUTDIR); \ |
151 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
152 |
$(MAKE_ARGS) BUILD_FLAVOR=product docs |
1 | 153 |
endif |
154 |
||
155 |
# Build variation of hotspot |
|
156 |
$(C1_VM_TARGETS): |
|
157 |
$(CD) $(GAMMADIR)/make; \ |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
158 |
$(MAKE) BUILD_FLAVOR=$(@:%1=%) VM_TARGET=$@ generic_build1 $(ALT_OUT) |
1 | 159 |
|
160 |
$(C2_VM_TARGETS): |
|
161 |
$(CD) $(GAMMADIR)/make; \ |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
162 |
$(MAKE) BUILD_FLAVOR=$@ VM_TARGET=$@ generic_build2 $(ALT_OUT) |
1 | 163 |
|
164 |
$(KERNEL_VM_TARGETS): |
|
165 |
$(CD) $(GAMMADIR)/make; \ |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
166 |
$(MAKE) BUILD_FLAVOR=$(@:%kernel=%) VM_TARGET=$@ \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
167 |
generic_buildkernel $(ALT_OUT) |
1 | 168 |
|
4013 | 169 |
$(ZERO_VM_TARGETS): |
170 |
$(CD) $(GAMMADIR)/make; \ |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
171 |
$(MAKE) BUILD_FLAVOR=$(@:%zero=%) VM_TARGET=$@ \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
172 |
generic_buildzero $(ALT_OUT) |
4013 | 173 |
|
6187 | 174 |
$(SHARK_VM_TARGETS): |
175 |
$(CD) $(GAMMADIR)/make; \ |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
176 |
$(MAKE) BUILD_FLAVOR=$(@:%shark=%) VM_TARGET=$@ \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
177 |
generic_buildshark $(ALT_OUT) |
6187 | 178 |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
179 |
$(MINIMAL1_VM_TARGETS): |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
180 |
$(CD) $(GAMMADIR)/make; \ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
181 |
$(MAKE) BUILD_FLAVOR=$(@:%minimal1=%) VM_TARGET=$@ \ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
182 |
generic_buildminimal1 $(ALT_OUT) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
183 |
|
1 | 184 |
# Build compiler1 (client) rule, different for platforms |
185 |
generic_build1: |
|
186 |
$(MKDIR) -p $(OUTPUTDIR) |
|
187 |
ifeq ($(OSNAME),windows) |
|
188 |
ifeq ($(ARCH_DATA_MODEL), 32) |
|
189 |
$(CD) $(OUTPUTDIR); \ |
|
190 |
$(NMAKE) -f $(ABS_OS_MAKEFILE) \ |
|
191 |
Variant=compiler1 \ |
|
192 |
WorkSpace=$(ABS_GAMMADIR) \ |
|
193 |
BootStrapDir=$(ABS_BOOTDIR) \ |
|
194 |
BuildUser=$(USERNAME) \ |
|
195 |
$(MAKE_ARGS) $(VM_TARGET:%1=%) |
|
196 |
else |
|
197 |
@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
|
198 |
endif |
|
199 |
else |
|
200 |
ifeq ($(ARCH_DATA_MODEL), 32) |
|
201 |
$(CD) $(OUTPUTDIR); \ |
|
202 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
203 |
$(MAKE_ARGS) $(VM_TARGET) |
|
204 |
else |
|
205 |
@$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
|
206 |
endif |
|
207 |
endif |
|
208 |
||
209 |
# Build compiler2 (server) rule, different for platforms |
|
210 |
generic_build2: |
|
211 |
$(MKDIR) -p $(OUTPUTDIR) |
|
212 |
ifeq ($(OSNAME),windows) |
|
213 |
$(CD) $(OUTPUTDIR); \ |
|
214 |
$(NMAKE) -f $(ABS_OS_MAKEFILE) \ |
|
215 |
Variant=compiler2 \ |
|
216 |
WorkSpace=$(ABS_GAMMADIR) \ |
|
217 |
BootStrapDir=$(ABS_BOOTDIR) \ |
|
218 |
BuildUser=$(USERNAME) \ |
|
219 |
$(MAKE_ARGS) $(VM_TARGET) |
|
220 |
else |
|
221 |
$(CD) $(OUTPUTDIR); \ |
|
222 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
223 |
$(MAKE_ARGS) $(VM_TARGET) |
|
224 |
endif |
|
225 |
||
226 |
generic_buildkernel: |
|
227 |
$(MKDIR) -p $(OUTPUTDIR) |
|
228 |
ifeq ($(OSNAME),windows) |
|
229 |
ifeq ($(ARCH_DATA_MODEL), 32) |
|
230 |
$(CD) $(OUTPUTDIR); \ |
|
231 |
$(NMAKE) -f $(ABS_OS_MAKEFILE) \ |
|
232 |
Variant=kernel \ |
|
233 |
WorkSpace=$(ABS_GAMMADIR) \ |
|
234 |
BootStrapDir=$(ABS_BOOTDIR) \ |
|
235 |
BuildUser=$(USERNAME) \ |
|
236 |
$(MAKE_ARGS) $(VM_TARGET:%kernel=%) |
|
237 |
else |
|
238 |
@$(ECHO) "No kernel ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" |
|
239 |
endif |
|
240 |
else |
|
241 |
@$(ECHO) "No kernel ($(VM_TARGET)) for OS_NAME=$(OSNAME)" |
|
242 |
endif |
|
243 |
||
4013 | 244 |
generic_buildzero: |
245 |
$(MKDIR) -p $(OUTPUTDIR) |
|
246 |
$(CD) $(OUTPUTDIR); \ |
|
247 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
248 |
$(MAKE_ARGS) $(VM_TARGET) |
|
249 |
||
6187 | 250 |
generic_buildshark: |
251 |
$(MKDIR) -p $(OUTPUTDIR) |
|
252 |
$(CD) $(OUTPUTDIR); \ |
|
253 |
$(MAKE) -f $(ABS_OS_MAKEFILE) \ |
|
254 |
$(MAKE_ARGS) $(VM_TARGET) |
|
255 |
||
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
256 |
generic_buildminimal1: |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
257 |
ifeq ($(JVM_VARIANT_MINIMAL1),true) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
258 |
$(MKDIR) -p $(OUTPUTDIR) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
259 |
ifeq ($(ARCH_DATA_MODEL), 32) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
260 |
ifeq ($(OSNAME),windows) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
261 |
$(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
|
262 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
263 |
ifeq ($(OSNAME),solaris) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
264 |
$(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
|
265 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
266 |
$(CD) $(OUTPUTDIR); \ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
267 |
$(MAKE) -f $(ABS_OS_MAKEFILE) $(MAKE_ARGS) $(VM_TARGET) ; |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
268 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
269 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
270 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
271 |
@$(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
|
272 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
273 |
else |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
274 |
@$(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
|
275 |
endif |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
276 |
|
1 | 277 |
# Export file rule |
278 |
generic_export: $(EXPORT_LIST) |
|
279 |
export_product: |
|
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
280 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) VM_SUBDIR=$(@:export_%=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
281 |
generic_export |
1 | 282 |
export_fastdebug: |
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
283 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) VM_SUBDIR=$(@:export_%=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
284 |
EXPORT_SUBDIR=/$(@:export_%=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
285 |
generic_export |
1 | 286 |
export_debug: |
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
287 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) VM_SUBDIR=${VM_DEBUG} \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
288 |
EXPORT_SUBDIR=/$(@:export_%=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
289 |
generic_export |
1 | 290 |
export_optimized: |
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
291 |
$(MAKE) BUILD_FLAVOR=$(@:export_%=%) VM_SUBDIR=$(@:export_%=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
292 |
EXPORT_SUBDIR=/$(@:export_%=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
293 |
generic_export |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
294 |
export_product_jdk:: |
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
295 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
296 |
VM_SUBDIR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
297 |
generic_export |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
298 |
export_optimized_jdk:: |
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
299 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
300 |
VM_SUBDIR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
301 |
generic_export |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
302 |
export_fastdebug_jdk:: |
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
303 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
304 |
VM_SUBDIR=$(@:export_%_jdk=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
305 |
ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/$(@:export_%_jdk=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
306 |
generic_export |
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
307 |
export_debug_jdk:: |
12502
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
308 |
$(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) VM_SUBDIR=${VM_DEBUG} \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
309 |
ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/$(@:export_%_jdk=%) \ |
a37189400e0d
7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents:
12501
diff
changeset
|
310 |
generic_export |
1 | 311 |
|
312 |
# Export file copy rules |
|
313 |
XUSAGE=$(HS_SRC_DIR)/share/vm/Xusage.txt |
|
314 |
DOCS_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_docs |
|
315 |
C1_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_compiler1 |
|
316 |
C2_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_compiler2 |
|
317 |
KERNEL_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_kernel |
|
4013 | 318 |
ZERO_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_zero |
6187 | 319 |
SHARK_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_shark |
1 | 320 |
C1_DIR=$(C1_BASE_DIR)/$(VM_SUBDIR) |
321 |
C2_DIR=$(C2_BASE_DIR)/$(VM_SUBDIR) |
|
322 |
KERNEL_DIR=$(KERNEL_BASE_DIR)/$(VM_SUBDIR) |
|
4013 | 323 |
ZERO_DIR=$(ZERO_BASE_DIR)/$(VM_SUBDIR) |
6187 | 324 |
SHARK_DIR=$(SHARK_BASE_DIR)/$(VM_SUBDIR) |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
325 |
MINIMAL1_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_minimal1 |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
326 |
MINIMAL1_DIR=$(MINIMAL1_BASE_DIR)/$(VM_SUBDIR) |
1 | 327 |
|
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
328 |
ifeq ($(JVM_VARIANT_SERVER), true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
329 |
MISC_DIR=$(C2_DIR) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
330 |
GEN_DIR=$(C2_BASE_DIR)/generated |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
331 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
332 |
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
|
333 |
MISC_DIR=$(C1_DIR) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
334 |
GEN_DIR=$(C1_BASE_DIR)/generated |
6187 | 335 |
endif |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
336 |
ifeq ($(JVM_VARIANT_KERNEL), true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
337 |
MISC_DIR=$(C2_DIR) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
338 |
GEN_DIR=$(C2_BASE_DIR)/generated |
1 | 339 |
endif |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
340 |
ifeq ($(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
|
341 |
MISC_DIR=$(SHARK_DIR) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
342 |
GEN_DIR=$(SHARK_BASE_DIR)/generated |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
343 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
344 |
ifeq ($(JVM_VARIANT_ZERO), true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
345 |
MISC_DIR=$(ZERO_DIR) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
346 |
GEN_DIR=$(ZERO_BASE_DIR)/generated |
4013 | 347 |
endif |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
348 |
ifeq ($(JVM_VARIANT_MINIMAL1), true) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
349 |
MISC_DIR=$(MINIMAL1_DIR) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
350 |
GEN_DIR=$(MINIMAL1_BASE_DIR)/generated |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
351 |
endif |
1 | 352 |
|
353 |
# Bin files (windows) |
|
354 |
ifeq ($(OSNAME),windows) |
|
355 |
||
356 |
# Get jvm.lib |
|
357 |
$(EXPORT_LIB_DIR)/%.lib: $(MISC_DIR)/%.lib |
|
358 |
$(install-file) |
|
359 |
||
360 |
# Other libraries (like SA) |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
361 |
$(EXPORT_JRE_BIN_DIR)/%.diz: $(MISC_DIR)/%.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
362 |
$(install-file) |
1 | 363 |
$(EXPORT_JRE_BIN_DIR)/%.dll: $(MISC_DIR)/%.dll |
364 |
$(install-file) |
|
365 |
$(EXPORT_JRE_BIN_DIR)/%.pdb: $(MISC_DIR)/%.pdb |
|
366 |
$(install-file) |
|
367 |
$(EXPORT_JRE_BIN_DIR)/%.map: $(MISC_DIR)/%.map |
|
368 |
$(install-file) |
|
369 |
||
370 |
# Client files always come from C1 area |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
371 |
$(EXPORT_CLIENT_DIR)/%.diz: $(C1_DIR)/%.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
372 |
$(install-file) |
1 | 373 |
$(EXPORT_CLIENT_DIR)/%.dll: $(C1_DIR)/%.dll |
374 |
$(install-file) |
|
375 |
$(EXPORT_CLIENT_DIR)/%.pdb: $(C1_DIR)/%.pdb |
|
376 |
$(install-file) |
|
377 |
$(EXPORT_CLIENT_DIR)/%.map: $(C1_DIR)/%.map |
|
378 |
$(install-file) |
|
379 |
||
380 |
# Server files always come from C2 area |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
381 |
$(EXPORT_SERVER_DIR)/%.diz: $(C2_DIR)/%.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
382 |
$(install-file) |
1 | 383 |
$(EXPORT_SERVER_DIR)/%.dll: $(C2_DIR)/%.dll |
384 |
$(install-file) |
|
385 |
$(EXPORT_SERVER_DIR)/%.pdb: $(C2_DIR)/%.pdb |
|
386 |
$(install-file) |
|
387 |
$(EXPORT_SERVER_DIR)/%.map: $(C2_DIR)/%.map |
|
388 |
$(install-file) |
|
389 |
||
390 |
# Kernel files always come from kernel area |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
391 |
$(EXPORT_KERNEL_DIR)/%.diz: $(KERNEL_DIR)/%.diz |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11784
diff
changeset
|
392 |
$(install-file) |
1 | 393 |
$(EXPORT_KERNEL_DIR)/%.dll: $(KERNEL_DIR)/%.dll |
394 |
$(install-file) |
|
395 |
$(EXPORT_KERNEL_DIR)/%.pdb: $(KERNEL_DIR)/%.pdb |
|
396 |
$(install-file) |
|
397 |
$(EXPORT_KERNEL_DIR)/%.map: $(KERNEL_DIR)/%.map |
|
398 |
$(install-file) |
|
399 |
endif |
|
400 |
||
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
401 |
# Minimal JVM files always come from minimal area |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
402 |
$(EXPORT_MINIMAL_DIR)/%.diz: $(MINIMAL1_DIR)/%.diz |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
403 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
404 |
$(EXPORT_MINIMAL_DIR)/%.dll: $(MINIMAL1_DIR)/%.dll |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
405 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
406 |
$(EXPORT_MINIMAL_DIR)/%.pdb: $(MINIMAL1_DIR)/%.pdb |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
407 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
408 |
$(EXPORT_MINIMAL_DIR)/%.map: $(MINIMAL1_DIR)/%.map |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
409 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
410 |
|
1 | 411 |
# Shared Library |
412 |
ifneq ($(OSNAME),windows) |
|
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
413 |
ifeq ($(JVM_VARIANT_SERVER), true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
414 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C2_DIR)/%.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
415 |
$(install-file) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
416 |
$(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(C2_DIR)/%.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
417 |
$(install-file) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
418 |
$(EXPORT_SERVER_DIR)/64/%.$(LIBRARY_SUFFIX): $(C2_DIR)/%.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
419 |
$(install-file) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
420 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(C2_DIR)/%.debuginfo |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
421 |
$(install-file) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
422 |
$(EXPORT_SERVER_DIR)/%.debuginfo: $(C2_DIR)/%.debuginfo |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
423 |
$(install-file) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
424 |
$(EXPORT_SERVER_DIR)/64/%.debuginfo: $(C2_DIR)/%.debuginfo |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
425 |
$(install-file) |
12503 | 426 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(C2_DIR)/%.diz |
427 |
$(install-file) |
|
428 |
$(EXPORT_SERVER_DIR)/%.diz: $(C2_DIR)/%.diz |
|
429 |
$(install-file) |
|
430 |
$(EXPORT_SERVER_DIR)/64/%.diz: $(C2_DIR)/%.diz |
|
431 |
$(install-file) |
|
6187 | 432 |
endif |
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
433 |
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
|
434 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C1_DIR)/%.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
435 |
$(install-file) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
436 |
$(EXPORT_CLIENT_DIR)/%.$(LIBRARY_SUFFIX): $(C1_DIR)/%.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
437 |
$(install-file) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
438 |
$(EXPORT_CLIENT_DIR)/64/%.$(LIBRARY_SUFFIX): $(C1_DIR)/%.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
439 |
$(install-file) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
440 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(C1_DIR)/%.debuginfo |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
441 |
$(install-file) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
442 |
$(EXPORT_CLIENT_DIR)/%.debuginfo: $(C1_DIR)/%.debuginfo |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
443 |
$(install-file) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
444 |
$(EXPORT_CLIENT_DIR)/64/%.debuginfo: $(C1_DIR)/%.debuginfo |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
445 |
$(install-file) |
12503 | 446 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(C1_DIR)/%.diz |
447 |
$(install-file) |
|
448 |
$(EXPORT_CLIENT_DIR)/%.diz: $(C1_DIR)/%.diz |
|
449 |
$(install-file) |
|
450 |
$(EXPORT_CLIENT_DIR)/64/%.diz: $(C1_DIR)/%.diz |
|
451 |
$(install-file) |
|
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
452 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
453 |
ifeq ($(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
|
454 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(SHARK_DIR)/%.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
455 |
$(install-file) |
14294 | 456 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo): $(SHARK_DIR)/%.debuginfo |
457 |
$(install-file) |
|
458 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(SHARK_DIR)/%.diz |
|
459 |
$(install-file) |
|
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
460 |
$(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(SHARK_DIR)/%.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
461 |
$(install-file) |
14294 | 462 |
$(EXPORT_SERVER_DIR)/%.debuginfo: $(SHARK_DIR)/%.debuginfo |
463 |
$(install-file) |
|
464 |
$(EXPORT_SERVER_DIR)/%.diz: $(SHARK_DIR)/%.diz |
|
465 |
$(install-file) |
|
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
466 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
467 |
ifeq ($(JVM_VARIANT_ZERO), true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
468 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(ZERO_DIR)/%.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
469 |
$(install-file) |
14294 | 470 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(ZERO_DIR)/%.debuginfo |
471 |
$(install-file) |
|
472 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(ZERO_DIR)/%.diz |
|
473 |
$(install-file) |
|
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
474 |
$(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(ZERO_DIR)/%.$(LIBRARY_SUFFIX) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
475 |
$(install-file) |
14294 | 476 |
$(EXPORT_SERVER_DIR)/%.debuginfo: $(ZERO_DIR)/%.debuginfo |
477 |
$(install-file) |
|
478 |
$(EXPORT_SERVER_DIR)/%.diz: $(ZERO_DIR)/%.diz |
|
479 |
$(install-file) |
|
12156
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
480 |
endif |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
481 |
ifeq ($(JVM_VARIANT_MINIMAL1), true) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
482 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(MINIMAL1_DIR)/%.$(LIBRARY_SUFFIX) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
483 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
484 |
$(EXPORT_MINIMAL_DIR)/%.$(LIBRARY_SUFFIX): $(MINIMAL1_DIR)/%.$(LIBRARY_SUFFIX) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
485 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
486 |
$(EXPORT_MINIMAL_DIR)/64/%.$(LIBRARY_SUFFIX): $(MINIMAL1_DIR)/%.$(LIBRARY_SUFFIX) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
487 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
488 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(MINIMAL1_DIR)/%.debuginfo |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
489 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
490 |
$(EXPORT_MINIMAL_DIR)/%.debuginfo: $(MINIMAL1_DIR)/%.debuginfo |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
491 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
492 |
$(EXPORT_MINIMAL_DIR)/64/%.debuginfo: $(MINIMAL1_DIR)/%.debuginfo |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
493 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
494 |
$(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(MINIMAL1_DIR)/%.diz |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
495 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
496 |
$(EXPORT_MINIMAL_DIR)/%.diz: $(MINIMAL1_DIR)/%.diz |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
497 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
498 |
$(EXPORT_MINIMAL_DIR)/64/%.diz: $(MINIMAL1_DIR)/%.diz |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
499 |
$(install-file) |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
500 |
endif |
1 | 501 |
endif |
502 |
||
503 |
# Jar file (sa-jdi.jar) |
|
504 |
$(EXPORT_LIB_DIR)/%.jar: $(GEN_DIR)/%.jar |
|
505 |
$(install-file) |
|
506 |
||
12095 | 507 |
$(EXPORT_JRE_LIB_DIR)/%.jar: $(GEN_DIR)/%.jar |
508 |
$(install-file) |
|
509 |
||
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
510 |
# Include files (jvmti.h, jvmticmlr.h, jni.h, $(JDK_INCLUDE_SUBDIR)/jni_md.h, jmm.h, jfr.h) |
1 | 511 |
$(EXPORT_INCLUDE_DIR)/%: $(GEN_DIR)/jvmtifiles/% |
512 |
$(install-file) |
|
513 |
||
4732
a70548606f73
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
670
diff
changeset
|
514 |
$(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
|
515 |
$(install-file) |
a70548606f73
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
670
diff
changeset
|
516 |
|
1 | 517 |
$(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/prims/% |
518 |
$(install-file) |
|
519 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
520 |
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
|
521 |
$(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h: $(HS_JNI_ARCH_SRC) |
1 | 522 |
$(install-file) |
523 |
||
524 |
$(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/services/% |
|
525 |
$(install-file) |
|
526 |
||
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
527 |
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
|
528 |
# export jfr.h |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
529 |
ifeq ($JFR_EXISTS,1) |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
530 |
$(EXPORT_INCLUDE_DIR)/%: $(HS_ALT_SRC)/share/vm/jfr/agent/% |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
531 |
$(install-file) |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
532 |
else |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
533 |
$(EXPORT_INCLUDE_DIR)/jfr.h: |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
534 |
endif |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10739
diff
changeset
|
535 |
|
1 | 536 |
# Doc files (jvmti.html) |
537 |
$(EXPORT_DOCS_DIR)/platform/jvmti/%: $(DOCS_DIR)/% |
|
538 |
$(install-file) |
|
539 |
||
540 |
# Xusage file |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
541 |
$(EXPORT_SERVER_DIR)/Xusage.txt $(EXPORT_CLIENT_DIR)/Xusage.txt $(EXPORT_KERNEL_DIR)/Xusage.txt $(EXPORT_MINIMAL_DIR)/Xusage.txt: $(XUSAGE) |
1 | 542 |
$(prep-target) |
543 |
$(RM) $@.temp |
|
544 |
$(SED) 's/\(separated by \)[;:]/\1$(PATH_SEP)/g' $< > $@.temp |
|
545 |
$(MV) $@.temp $@ |
|
546 |
||
547 |
# |
|
548 |
# Clean rules |
|
549 |
# |
|
550 |
clobber clean: clean_build clean_export clean_jdk |
|
551 |
clean_build: |
|
552 |
$(RM) -r $(C1_DIR) |
|
553 |
$(RM) -r $(C2_DIR) |
|
554 |
$(RM) -r $(KERNEL_DIR) |
|
4013 | 555 |
$(RM) -r $(ZERO_DIR) |
6187 | 556 |
$(RM) -r $(SHARK_DIR) |
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
557 |
$(RM) -r $(MINIMAL1_DIR) |
1 | 558 |
clean_export: |
559 |
$(RM) -r $(EXPORT_PATH) |
|
560 |
clean_jdk: |
|
561 |
$(RM) -r $(JDK_IMAGE_DIR) |
|
562 |
||
563 |
# |
|
564 |
# Create JDK and place this build into it |
|
565 |
# |
|
566 |
create_jdk: copy_jdk update_jdk |
|
567 |
||
568 |
update_jdk: export_product_jdk export_fastdebug_jdk test_jdk |
|
569 |
||
570 |
copy_jdk: $(JDK_IMAGE_DIR)/jre/lib/rt.jar |
|
571 |
||
572 |
$(JDK_IMAGE_DIR)/jre/lib/rt.jar: |
|
573 |
$(RM) -r $(JDK_IMAGE_DIR) |
|
574 |
$(MKDIR) -p $(JDK_IMAGE_DIR) |
|
575 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
576 |
$(TAR) -cf - *) | \ |
|
577 |
($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -) |
|
578 |
||
579 |
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
|
580 |
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
|
581 |
$(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
|
582 |
$(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
|
583 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
584 |
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
|
585 |
$(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
|
586 |
$(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
|
587 |
$(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
|
588 |
endif |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
589 |
ifeq ($(JVM_VARIANT_KERNEL), true) |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
590 |
$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -kernel -Xinternalversion |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
591 |
$(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -kernel -version |
fb31de03f649
7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents:
12095
diff
changeset
|
592 |
endif |
1 | 593 |
|
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
594 |
copy_product_jdk:: |
1 | 595 |
$(RM) -r $(JDK_IMAGE_DIR) |
596 |
$(MKDIR) -p $(JDK_IMAGE_DIR) |
|
597 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
598 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 599 |
($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -) |
600 |
||
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
601 |
copy_fastdebug_jdk:: |
1 | 602 |
$(RM) -r $(JDK_IMAGE_DIR)/fastdebug |
603 |
$(MKDIR) -p $(JDK_IMAGE_DIR)/fastdebug |
|
604 |
if [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \ |
|
605 |
($(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
|
606 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 607 |
($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \ |
608 |
else \ |
|
609 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
610 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 611 |
($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \ |
612 |
fi |
|
613 |
||
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
614 |
copy_debug_jdk:: |
1 | 615 |
$(RM) -r $(JDK_IMAGE_DIR)/debug |
616 |
$(MKDIR) -p $(JDK_IMAGE_DIR)/debug |
|
617 |
if [ -d $(JDK_IMPORT_PATH)/debug ] ; then \ |
|
618 |
($(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
|
619 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 620 |
($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \ |
621 |
elif [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \ |
|
622 |
($(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
|
623 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 624 |
($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \ |
625 |
else \ |
|
626 |
($(CD) $(JDK_IMPORT_PATH) && \ |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
627 |
$(TAR) -cf - $(JDK_DIRS)) | \ |
1 | 628 |
($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \ |
629 |
fi |
|
630 |
||
631 |
# |
|
632 |
# Check target |
|
633 |
# |
|
634 |
check: variable_check |
|
635 |
||
636 |
# |
|
637 |
# Help target |
|
638 |
# |
|
639 |
help: intro_help target_help variable_help notes_help examples_help |
|
640 |
||
641 |
# Intro help message |
|
642 |
intro_help: |
|
643 |
@$(ECHO) \ |
|
644 |
"Makefile for the Hotspot workspace." |
|
645 |
@$(ECHO) \ |
|
646 |
"Default behavior is to build and create an export area for the j2se builds." |
|
647 |
||
648 |
# Target help |
|
649 |
target_help: |
|
650 |
@$(ECHO) "help: This help message" |
|
651 |
@$(ECHO) "all: Same as: all_product all_fastdebug" |
|
652 |
@$(ECHO) "world: Same as: all create_jdk" |
|
653 |
@$(ECHO) "all_product: Same as: product product1 export_product" |
|
654 |
@$(ECHO) "all_fastdebug: Same as: fastdebug fastdebug1 export_fastdebug" |
|
655 |
@$(ECHO) "all_debug: Same as: jvmg jvmg1 export_debug" |
|
656 |
@$(ECHO) "all_optimized: Same as: optimized optimized1 export_optimized" |
|
657 |
@$(ECHO) "clean: Clean all areas" |
|
658 |
@$(ECHO) "export_product: Export product files to EXPORT_PATH" |
|
659 |
@$(ECHO) "export_fastdebug: Export fastdebug files to EXPORT_PATH" |
|
660 |
@$(ECHO) "export_debug: Export debug files to EXPORT_PATH" |
|
661 |
@$(ECHO) "export_optimized: Export optimized files to EXPORT_PATH" |
|
662 |
@$(ECHO) "create_jdk: Create JDK image, export all files into it" |
|
663 |
@$(ECHO) "update_jdk: Update JDK image with fresh exported files" |
|
664 |
@$(ECHO) " " |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
665 |
@$(ECHO) "Other targets are:" |
1 | 666 |
@$(ECHO) " $(C1_VM_TARGETS)" |
667 |
@$(ECHO) " $(C2_VM_TARGETS)" |
|
668 |
@$(ECHO) " $(KERNEL_VM_TARGETS)" |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
669 |
@$(ECHO) " $(MINIMAL1_VM_TARGETS)" |
1 | 670 |
|
671 |
# Variable help (only common ones used by this workspace) |
|
672 |
variable_help: variable_help_intro variable_list variable_help_end |
|
673 |
variable_help_intro: |
|
674 |
@$(ECHO) "--- Common Variables ---" |
|
675 |
variable_help_end: |
|
676 |
@$(ECHO) " " |
|
677 |
@$(ECHO) "--- Make Arguments ---" |
|
678 |
@$(ECHO) "MAKE_ARGS=$(MAKE_ARGS)" |
|
679 |
||
680 |
# One line descriptions for the variables |
|
681 |
SLASH_JAVA.desc = Root of all build tools, e.g. /java or J: |
|
682 |
OUTPUTDIR.desc = Output directory, default is build/<osname> |
|
683 |
BOOTDIR.desc = JDK used to compile agent java source and test with |
|
684 |
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
|
685 |
JDK_IMAGE_DIR.desc = Directory to place JDK to copy |
1 | 686 |
EXPORT_PATH.desc = Directory to place files to export for JDK build |
687 |
||
688 |
# Make variables to print out (description and value) |
|
689 |
VARIABLE_PRINTVAL_LIST += \ |
|
690 |
SLASH_JAVA \ |
|
691 |
OUTPUTDIR \ |
|
692 |
BOOTDIR \ |
|
693 |
JDK_IMPORT_PATH \ |
|
11784
715f58266a42
7143766: add ALT_JDK_IMAGE_DIR and improve test_jdk
twisti
parents:
11629
diff
changeset
|
694 |
JDK_IMAGE_DIR \ |
1 | 695 |
EXPORT_PATH |
696 |
||
697 |
# Make variables that should refer to directories that exist |
|
698 |
VARIABLE_CHECKDIR_LIST += \ |
|
699 |
SLASH_JAVA \ |
|
700 |
BOOTDIR \ |
|
701 |
JDK_IMPORT_PATH |
|
702 |
||
703 |
# For pattern rules below, so all are treated the same |
|
704 |
DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval) |
|
705 |
DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir) |
|
706 |
||
707 |
# Complete variable check |
|
708 |
variable_check: $(DO_CHECKDIR_LIST) |
|
709 |
variable_list: $(DO_PRINTVAL_LIST) variable_check |
|
710 |
||
711 |
# Pattern rule for printing out a variable |
|
712 |
%.printval: |
|
713 |
@$(ECHO) " ALT_$* - $($*.desc)" |
|
714 |
@$(ECHO) " $*=$($*)" |
|
715 |
||
716 |
# Pattern rule for checking to see if a variable with a directory exists |
|
717 |
%.checkdir: |
|
718 |
@if [ ! -d $($*) ] ; then \ |
|
719 |
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \ |
|
720 |
fi |
|
721 |
||
722 |
# Pattern rule for checking to see if a variable with a file exists |
|
723 |
%.checkfil: |
|
724 |
@if [ ! -f $($*) ] ; then \ |
|
725 |
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \ |
|
726 |
fi |
|
727 |
||
728 |
# Misc notes on help |
|
729 |
notes_help: |
|
730 |
@$(ECHO) \ |
|
731 |
"--- Notes --- " |
|
732 |
@$(ECHO) \ |
|
733 |
"- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted" |
|
734 |
@$(ECHO) \ |
|
735 |
" builds or previous release JDK builds will work." |
|
736 |
@$(ECHO) \ |
|
737 |
"- The fastest builds have been when the workspace and the BOOTDIR are on" |
|
738 |
@$(ECHO) \ |
|
739 |
" local disk." |
|
740 |
||
741 |
examples_help: |
|
742 |
@$(ECHO) \ |
|
743 |
"--- Examples --- " |
|
744 |
@$(ECHO) \ |
|
745 |
" $(MAKE) all" |
|
746 |
@$(ECHO) \ |
|
747 |
" $(MAKE) world" |
|
748 |
@$(ECHO) \ |
|
749 |
" $(MAKE) ALT_BOOTDIR=/opt/java/jdk$(PREVIOUS_JDK_VERSION)" |
|
750 |
@$(ECHO) \ |
|
751 |
" $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk$(JDK_VERSION)" |
|
752 |
||
11629
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
753 |
# Universal build support |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
754 |
ifeq ($(OS_VENDOR), Darwin) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
755 |
ifeq ($(MACOSX_UNIVERSAL),true) |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
756 |
include $(GAMMADIR)/make/$(OSNAME)/makefiles/universal.gmk |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
757 |
endif |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
758 |
endif |
72a73185bdc7
7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents:
11480
diff
changeset
|
759 |
|
1 | 760 |
# JPRT rule to build this workspace |
761 |
include $(GAMMADIR)/make/jprt.gmk |
|
762 |
||
763 |
.PHONY: all world clobber clean help $(C1_VM_TARGETS) $(C2_VM_TARGETS) \ |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
764 |
$(KERNEL_VM_TARGETS) $(MINIMAL1_VM_TARGETS) \ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
765 |
generic_build1 generic_build2 generic_buildkernel generic_buildminimal1 generic_export \ |
1 | 766 |
export_product export_fastdebug export_debug export_optimized \ |
767 |
export_jdk_product export_jdk_fastdebug export_jdk_debug \ |
|
768 |
create_jdk copy_jdk update_jdk test_jdk \ |
|
13975
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
769 |
copy_product_jdk copy_fastdebug_jdk copy_debug_jdk \ |
2f7431485cfa
7189254: Change makefiles for more flexibility to override defaults
jprovino
parents:
12503
diff
changeset
|
770 |
$(HS_ALT_MAKE)/Makefile.make |