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