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