annotate make/Makefile @ 9802:9dcd6f8a843b

CompileTask: add option to print exception on compile error per default, we don't want to print the stackTrace if ExitVMOnException isn't set (for CTW), but in some situations this can be useful, e.g. in combination with the VerifyUsageWithEquals phase.
author Bernhard Urban <bernhard.urban@jku.at>
date Thu, 23 May 2013 12:07:34 +0200
parents 1d584a42941f
children 2a091d2987bd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
7951
8b46b0196eb0 8000692: Remove old KERNEL code
zgu
parents: 6926
diff changeset
2 # Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1185
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1185
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1185
diff changeset
21 # questions.
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
22 #
0
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # Top level gnumake file for hotspot builds
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #
a61af66fc99e Initial load
duke
parents:
diff changeset
27 # Default is to build the both product images and construct an export dir.
a61af66fc99e Initial load
duke
parents:
diff changeset
28 # The default export directory name is `pwd`/export-$(PLATFORM).
a61af66fc99e Initial load
duke
parents:
diff changeset
29 #
a61af66fc99e Initial load
duke
parents:
diff changeset
30 # Use: 'gnumake help' for more information.
a61af66fc99e Initial load
duke
parents:
diff changeset
31 #
a61af66fc99e Initial load
duke
parents:
diff changeset
32 # This makefile uses the default settings for where to find compilers and
a61af66fc99e Initial load
duke
parents:
diff changeset
33 # tools, and obeys the ALT_* variable settings used by the other JDK
a61af66fc99e Initial load
duke
parents:
diff changeset
34 # workspaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
35 #
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 # Expected/optional make variables defined on make command line:
a61af66fc99e Initial load
duke
parents:
diff changeset
38 # LP64=1 or ARCH_DATA_MODEL=64 for 64bit build
a61af66fc99e Initial load
duke
parents:
diff changeset
39 #
a61af66fc99e Initial load
duke
parents:
diff changeset
40 # Expected/optional make variables or environment variables:
a61af66fc99e Initial load
duke
parents:
diff changeset
41 # ALT_SLASH_JAVA Location of /java or J:
a61af66fc99e Initial load
duke
parents:
diff changeset
42 # ALT_BOOTDIR Previous JDK home directory for javac compiler
a61af66fc99e Initial load
duke
parents:
diff changeset
43 # ALT_OUTPUTDIR Output directory to use for hotspot build
a61af66fc99e Initial load
duke
parents:
diff changeset
44 # ALT_EXPORT_PATH Directory to export hotspot build to
a61af66fc99e Initial load
duke
parents:
diff changeset
45 # ALT_JDK_IMPORT_PATH Current JDK build (only for create_jdk rules)
2237
b76d12f4ab2d 7018429: JPRT: Update Makefile to use ALT_JDK_TARGET_IMPORT_PATH for copying JDK
dholmes
parents: 2199
diff changeset
46 # ALT_JDK_TARGET_IMPORT_PATH Current JDK build when cross-compiling
0
a61af66fc99e Initial load
duke
parents:
diff changeset
47 # ALT_BUILD_WIN_SA Building SA on Windows is disabled by default.
a61af66fc99e Initial load
duke
parents:
diff changeset
48 # Set ALT_BUILD_WIN_SA=1 to enable building SA on
a61af66fc99e Initial load
duke
parents:
diff changeset
49 # Windows.
a61af66fc99e Initial load
duke
parents:
diff changeset
50 # Version strings and numbers:
a61af66fc99e Initial load
duke
parents:
diff changeset
51 # JDK_VERSION Current JDK version (e.g. 1.6.0)
a61af66fc99e Initial load
duke
parents:
diff changeset
52 # PREVIOUS_JDK_VERSION Previous (bootdir) JDK version (e.g. 1.5.0)
a61af66fc99e Initial load
duke
parents:
diff changeset
53 # FULL_VERSION Full version string to use (e.g. "1.6.0-ea-b42")
a61af66fc99e Initial load
duke
parents:
diff changeset
54 #
a61af66fc99e Initial load
duke
parents:
diff changeset
55 # Version strings and numbers especially needed on Windows:
a61af66fc99e Initial load
duke
parents:
diff changeset
56 # COOKED_JDK_UPDATE_VERSION Just the update release number (e.g. 02)
a61af66fc99e Initial load
duke
parents:
diff changeset
57 # COOKED_BUILD_NUMBER Just the build number (e.g. 42)
a61af66fc99e Initial load
duke
parents:
diff changeset
58 # JDK_MKTG_VERSION Marketing JDK version (e.g. 6.0)
a61af66fc99e Initial load
duke
parents:
diff changeset
59 # JDK_MAJOR_VERSION Major number for version (e.g. 1) always 1?
a61af66fc99e Initial load
duke
parents:
diff changeset
60 # JDK_MINOR_VERSION Minor number for version (e.g. 6)
a61af66fc99e Initial load
duke
parents:
diff changeset
61 # JDK_MICRO_VERSION Micro number for version (e.g. 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
62 #
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 # Default is build both product fastdebug and create export area
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 # Allow to build HotSpot in local directory from sources specified by GAMMADIR.
a61af66fc99e Initial load
duke
parents:
diff changeset
67 # After make/defs.make GAMMADIR is defined.
a61af66fc99e Initial load
duke
parents:
diff changeset
68 ifdef GAMMADIR
a61af66fc99e Initial load
duke
parents:
diff changeset
69 ifndef ALT_OUTPUTDIR
a61af66fc99e Initial load
duke
parents:
diff changeset
70 ALT_OUTPUTDIR := $(shell pwd)
a61af66fc99e Initial load
duke
parents:
diff changeset
71 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
72 include $(GAMMADIR)/make/defs.make
a61af66fc99e Initial load
duke
parents:
diff changeset
73 else
a61af66fc99e Initial load
duke
parents:
diff changeset
74 include defs.make
a61af66fc99e Initial load
duke
parents:
diff changeset
75 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
76
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2192
diff changeset
77 include $(GAMMADIR)/make/altsrc.make
0
a61af66fc99e Initial load
duke
parents:
diff changeset
78
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
79 -include $(HS_ALT_MAKE)/Makefile.make
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
80
0
a61af66fc99e Initial load
duke
parents:
diff changeset
81 ifneq ($(ALT_OUTPUTDIR),)
a61af66fc99e Initial load
duke
parents:
diff changeset
82 ALT_OUT=ALT_OUTPUTDIR=$(ALT_OUTPUTDIR)
a61af66fc99e Initial load
duke
parents:
diff changeset
83 else
a61af66fc99e Initial load
duke
parents:
diff changeset
84 ALT_OUT=
a61af66fc99e Initial load
duke
parents:
diff changeset
85 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
86
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
87 # Directory for shared code (e.g. graal.jar)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
88 SHARED_DIR=$(OUTPUTDIR)/shared
9170
1d584a42941f added BUILD_GRAAL_JAR build variable to Makefile to control whether or not graal.jar is built by make
Doug Simon <doug.simon@oracle.com>
parents: 9159
diff changeset
89 BUILD_GRAAL_JAR ?= true
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
90
0
a61af66fc99e Initial load
duke
parents:
diff changeset
91 # Typical C1/C2 targets made available with this Makefile
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
92 C1_VM_TARGETS=product1 fastdebug1 optimized1 debug1
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
93 C2_VM_TARGETS=product fastdebug optimized debug
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
94 ZERO_VM_TARGETS=productzero fastdebugzero optimizedzero debugzero
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
95 SHARK_VM_TARGETS=productshark fastdebugshark optimizedshark debugshark
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
96 MINIMAL1_VM_TARGETS=productminimal1 fastdebugminimal1 debugminimal1
9159
43223d3f5dcd Merge with hsx/hotspot-comp
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8883 9152
diff changeset
97 GRAAL_VM_TARGETS=productgraal fastdebuggraal optimizedgraal debuggraal
0
a61af66fc99e Initial load
duke
parents:
diff changeset
98
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
99 COMMON_VM_PRODUCT_TARGETS=product product1 docs export_product
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
100 COMMON_VM_FASTDEBUG_TARGETS=fastdebug fastdebug1 docs export_fastdebug
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
101 COMMON_VM_DEBUG_TARGETS=debug debug1 docs export_debug
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
102
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
103 # JDK directory list
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
104 JDK_DIRS=bin include jre lib demo
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
105
0
a61af66fc99e Initial load
duke
parents:
diff changeset
106 all: all_product all_fastdebug
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
107
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
108 ifeq ($(JVM_VARIANT_MINIMAL1),true)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
109 all_product: productminimal1
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
110 all_fastdebug: fastdebugminimal1
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
111 all_debug: debugminimal1
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
112 endif
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
113
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
114 ifdef BUILD_CLIENT_ONLY
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
115 all_product: product1 docs export_product
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
116 all_fastdebug: fastdebug1 docs export_fastdebug
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
117 all_debug: debug1 docs export_debug
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
118 else
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
119 ifeq ($(MACOSX_UNIVERSAL),true)
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
120 all_product: universal_product
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
121 all_fastdebug: universal_fastdebug
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
122 all_debug: universal_debug
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
123 else
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
124 all_product: $(COMMON_VM_PRODUCT_TARGETS)
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
125 all_fastdebug: $(COMMON_VM_FASTDEBUG_TARGETS)
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
126 all_debug: $(COMMON_VM_DEBUG_TARGETS)
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
127 endif
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
128 endif
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
129
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
130 all_optimized: optimized optimized1 docs export_optimized
0
a61af66fc99e Initial load
duke
parents:
diff changeset
131
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
132 allzero: all_productzero all_fastdebugzero
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
133 all_productzero: productzero docs export_product
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
134 all_fastdebugzero: fastdebugzero docs export_fastdebug
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
135 all_debugzero: debugzero docs export_debug
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
136 all_optimizedzero: optimizedzero docs export_optimized
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
137
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
138 allshark: all_productshark all_fastdebugshark
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
139 all_productshark: productshark docs export_product
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
140 all_fastdebugshark: fastdebugshark docs export_fastdebug
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
141 all_debugshark: debugshark docs export_debug
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
142 all_optimizedshark: optimizedshark docs export_optimized
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
143
3547
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
144 allgraal: all_productgraal all_fastdebuggraal
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
145 all_productgraal: productgraal docs export_product
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
146 all_fastdebuggraal: fastdebuggraal docs export_fastdebug
9159
43223d3f5dcd Merge with hsx/hotspot-comp
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8883 9152
diff changeset
147 all_debuggraal: debuggraal docs export_debug
3547
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
148 all_optimizedgraal: optimizedgraal docs export_optimized
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
149
0
a61af66fc99e Initial load
duke
parents:
diff changeset
150 # Do everything
a61af66fc99e Initial load
duke
parents:
diff changeset
151 world: all create_jdk
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 # Build or export docs
a61af66fc99e Initial load
duke
parents:
diff changeset
154 docs:
a61af66fc99e Initial load
duke
parents:
diff changeset
155 ifeq ($(OSNAME),windows)
a61af66fc99e Initial load
duke
parents:
diff changeset
156 @$(ECHO) "No docs ($(VM_TARGET)) for windows"
a61af66fc99e Initial load
duke
parents:
diff changeset
157 else
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
158 # We specify 'BUILD_FLAVOR=product' so that the proper
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
159 # ENABLE_FULL_DEBUG_SYMBOLS value is used.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
160 $(CD) $(OUTPUTDIR); \
a61af66fc99e Initial load
duke
parents:
diff changeset
161 $(MAKE) -f $(ABS_OS_MAKEFILE) \
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
162 $(MAKE_ARGS) BUILD_FLAVOR=product docs
0
a61af66fc99e Initial load
duke
parents:
diff changeset
163 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 # Build variation of hotspot
a61af66fc99e Initial load
duke
parents:
diff changeset
166 $(C1_VM_TARGETS):
a61af66fc99e Initial load
duke
parents:
diff changeset
167 $(CD) $(GAMMADIR)/make; \
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
168 $(MAKE) BUILD_FLAVOR=$(@:%1=%) VM_TARGET=$@ generic_build1 $(ALT_OUT)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 $(C2_VM_TARGETS):
a61af66fc99e Initial load
duke
parents:
diff changeset
171 $(CD) $(GAMMADIR)/make; \
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
172 $(MAKE) BUILD_FLAVOR=$@ VM_TARGET=$@ generic_build2 $(ALT_OUT)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
173
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
174 $(ZERO_VM_TARGETS):
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
175 $(CD) $(GAMMADIR)/make; \
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
176 $(MAKE) BUILD_FLAVOR=$(@:%zero=%) VM_TARGET=$@ \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
177 generic_buildzero $(ALT_OUT)
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
178
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
179 $(SHARK_VM_TARGETS):
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
180 $(CD) $(GAMMADIR)/make; \
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
181 $(MAKE) BUILD_FLAVOR=$(@:%shark=%) VM_TARGET=$@ \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
182 generic_buildshark $(ALT_OUT)
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
183
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
184 $(MINIMAL1_VM_TARGETS):
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
185 $(CD) $(GAMMADIR)/make; \
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
186 $(MAKE) BUILD_FLAVOR=$(@:%minimal1=%) VM_TARGET=$@ \
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
187 generic_buildminimal1 $(ALT_OUT)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
188
3547
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
189 $(GRAAL_VM_TARGETS):
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
190 $(CD) $(GAMMADIR)/make; \
8465
a7d3f7b5b462 re-enabled Full Debug Symbols builds of the Graal VM
Doug Simon <doug.simon@oracle.com>
parents: 8212
diff changeset
191 $(MAKE) BUILD_FLAVOR=$@ VM_TARGET=$@ \
a7d3f7b5b462 re-enabled Full Debug Symbols builds of the Graal VM
Doug Simon <doug.simon@oracle.com>
parents: 8212
diff changeset
192 generic_buildgraal $(ALT_OUT)
3547
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
193
0
a61af66fc99e Initial load
duke
parents:
diff changeset
194 # Build compiler1 (client) rule, different for platforms
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
195 generic_build1: buildshared
0
a61af66fc99e Initial load
duke
parents:
diff changeset
196 $(MKDIR) -p $(OUTPUTDIR)
a61af66fc99e Initial load
duke
parents:
diff changeset
197 ifeq ($(OSNAME),windows)
a61af66fc99e Initial load
duke
parents:
diff changeset
198 ifeq ($(ARCH_DATA_MODEL), 32)
a61af66fc99e Initial load
duke
parents:
diff changeset
199 $(CD) $(OUTPUTDIR); \
a61af66fc99e Initial load
duke
parents:
diff changeset
200 $(NMAKE) -f $(ABS_OS_MAKEFILE) \
a61af66fc99e Initial load
duke
parents:
diff changeset
201 Variant=compiler1 \
a61af66fc99e Initial load
duke
parents:
diff changeset
202 WorkSpace=$(ABS_GAMMADIR) \
a61af66fc99e Initial load
duke
parents:
diff changeset
203 BootStrapDir=$(ABS_BOOTDIR) \
a61af66fc99e Initial load
duke
parents:
diff changeset
204 BuildUser=$(USERNAME) \
a61af66fc99e Initial load
duke
parents:
diff changeset
205 $(MAKE_ARGS) $(VM_TARGET:%1=%)
a61af66fc99e Initial load
duke
parents:
diff changeset
206 else
a61af66fc99e Initial load
duke
parents:
diff changeset
207 @$(ECHO) "No compiler1 ($(VM_TARGET)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
a61af66fc99e Initial load
duke
parents:
diff changeset
208 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
209 else
a61af66fc99e Initial load
duke
parents:
diff changeset
210 $(CD) $(OUTPUTDIR); \
a61af66fc99e Initial load
duke
parents:
diff changeset
211 $(MAKE) -f $(ABS_OS_MAKEFILE) \
a61af66fc99e Initial load
duke
parents:
diff changeset
212 $(MAKE_ARGS) $(VM_TARGET)
a61af66fc99e Initial load
duke
parents:
diff changeset
213 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 # Build compiler2 (server) rule, different for platforms
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
216 generic_build2: buildshared
0
a61af66fc99e Initial load
duke
parents:
diff changeset
217 $(MKDIR) -p $(OUTPUTDIR)
a61af66fc99e Initial load
duke
parents:
diff changeset
218 ifeq ($(OSNAME),windows)
a61af66fc99e Initial load
duke
parents:
diff changeset
219 $(CD) $(OUTPUTDIR); \
a61af66fc99e Initial load
duke
parents:
diff changeset
220 $(NMAKE) -f $(ABS_OS_MAKEFILE) \
a61af66fc99e Initial load
duke
parents:
diff changeset
221 Variant=compiler2 \
a61af66fc99e Initial load
duke
parents:
diff changeset
222 WorkSpace=$(ABS_GAMMADIR) \
a61af66fc99e Initial load
duke
parents:
diff changeset
223 BootStrapDir=$(ABS_BOOTDIR) \
a61af66fc99e Initial load
duke
parents:
diff changeset
224 BuildUser=$(USERNAME) \
a61af66fc99e Initial load
duke
parents:
diff changeset
225 $(MAKE_ARGS) $(VM_TARGET)
a61af66fc99e Initial load
duke
parents:
diff changeset
226 else
a61af66fc99e Initial load
duke
parents:
diff changeset
227 $(CD) $(OUTPUTDIR); \
a61af66fc99e Initial load
duke
parents:
diff changeset
228 $(MAKE) -f $(ABS_OS_MAKEFILE) \
a61af66fc99e Initial load
duke
parents:
diff changeset
229 $(MAKE_ARGS) $(VM_TARGET)
a61af66fc99e Initial load
duke
parents:
diff changeset
230 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
231
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
232 generic_buildzero:
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
233 $(MKDIR) -p $(OUTPUTDIR)
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
234 $(CD) $(OUTPUTDIR); \
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
235 $(MAKE) -f $(ABS_OS_MAKEFILE) \
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
236 $(MAKE_ARGS) $(VM_TARGET)
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
237
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
238 generic_buildshark:
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
239 $(MKDIR) -p $(OUTPUTDIR)
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
240 $(CD) $(OUTPUTDIR); \
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
241 $(MAKE) -f $(ABS_OS_MAKEFILE) \
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
242 $(MAKE_ARGS) $(VM_TARGET)
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
243
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
244 generic_buildminimal1:
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
245 ifeq ($(JVM_VARIANT_MINIMAL1),true)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
246 $(MKDIR) -p $(OUTPUTDIR)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
247 ifeq ($(ARCH_DATA_MODEL), 32)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
248 ifeq ($(OSNAME),windows)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
249 $(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" ;
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
250 else
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
251 ifeq ($(OSNAME),solaris)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
252 $(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)" ;
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
253 else
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
254 $(CD) $(OUTPUTDIR); \
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
255 $(MAKE) -f $(ABS_OS_MAKEFILE) $(MAKE_ARGS) $(VM_TARGET) ;
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
256 endif
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
257 endif
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
258 else
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
259 @$(ECHO) "No ($(VM_TARGET)) for $(OSNAME) ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
260 endif
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
261 else
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
262 @$(ECHO) "Error: trying to build a minimal target but JVM_VARIANT_MINIMAL1 is not true."
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
263 endif
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
264
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
265 generic_buildgraal: buildshared
3547
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
266 $(MKDIR) -p $(OUTPUTDIR)
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
267 $(CD) $(OUTPUTDIR); \
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
268 $(MAKE) -f $(ABS_OS_MAKEFILE) \
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
269 $(MAKE_ARGS) $(VM_TARGET)
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
270
9170
1d584a42941f added BUILD_GRAAL_JAR build variable to Makefile to control whether or not graal.jar is built by make
Doug Simon <doug.simon@oracle.com>
parents: 9159
diff changeset
271
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
272 # Builds code that can be shared among different build flavors
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
273 buildshared:
9170
1d584a42941f added BUILD_GRAAL_JAR build variable to Makefile to control whether or not graal.jar is built by make
Doug Simon <doug.simon@oracle.com>
parents: 9159
diff changeset
274 ifeq ($(BUILD_GRAAL_JAR),true)
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
275 $(REMOTE) $(ANT) -f $(GAMMADIR)/make/build-graal.xml -Dgamma.dir=$(GAMMADIR) -Dshared.dir=$(SHARED_DIR)
9170
1d584a42941f added BUILD_GRAAL_JAR build variable to Makefile to control whether or not graal.jar is built by make
Doug Simon <doug.simon@oracle.com>
parents: 9159
diff changeset
276 endif
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
277
0
a61af66fc99e Initial load
duke
parents:
diff changeset
278 # Export file rule
a61af66fc99e Initial load
duke
parents:
diff changeset
279 generic_export: $(EXPORT_LIST)
a61af66fc99e Initial load
duke
parents:
diff changeset
280 export_product:
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
281 $(MAKE) BUILD_FLAVOR=$(@:export_%=%) VM_SUBDIR=$(@:export_%=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
282 generic_export
0
a61af66fc99e Initial load
duke
parents:
diff changeset
283 export_fastdebug:
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
284 $(MAKE) BUILD_FLAVOR=$(@:export_%=%) VM_SUBDIR=$(@:export_%=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
285 EXPORT_SUBDIR=/$(@:export_%=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
286 generic_export
0
a61af66fc99e Initial load
duke
parents:
diff changeset
287 export_debug:
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
288 $(MAKE) BUILD_FLAVOR=$(@:export_%=%) VM_SUBDIR=$(@:export_%=%) \
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
289 EXPORT_SUBDIR=/$(@:export_%=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
290 generic_export
0
a61af66fc99e Initial load
duke
parents:
diff changeset
291 export_optimized:
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
292 $(MAKE) BUILD_FLAVOR=$(@:export_%=%) VM_SUBDIR=$(@:export_%=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
293 EXPORT_SUBDIR=/$(@:export_%=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
294 generic_export
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
295 export_product_jdk::
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
296 $(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
297 VM_SUBDIR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
298 generic_export
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
299 export_optimized_jdk::
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
300 $(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
301 VM_SUBDIR=$(@:export_%_jdk=%) ALT_EXPORT_PATH=$(JDK_IMAGE_DIR) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
302 generic_export
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
303 export_fastdebug_jdk::
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
304 $(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
305 VM_SUBDIR=$(@:export_%_jdk=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
306 ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/$(@:export_%_jdk=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
307 generic_export
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
308 export_debug_jdk::
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
309 $(MAKE) BUILD_FLAVOR=$(@:export_%_jdk=%) VM_SUBDIR=$(@:export_%_jdk=%) \
6021
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
310 ALT_EXPORT_PATH=$(JDK_IMAGE_DIR)/$(@:export_%_jdk=%) \
744728c16316 7158067: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect product builds
dcubed
parents: 6020
diff changeset
311 generic_export
0
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 # Export file copy rules
a61af66fc99e Initial load
duke
parents:
diff changeset
314 XUSAGE=$(HS_SRC_DIR)/share/vm/Xusage.txt
a61af66fc99e Initial load
duke
parents:
diff changeset
315 DOCS_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_docs
a61af66fc99e Initial load
duke
parents:
diff changeset
316 C1_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_compiler1
a61af66fc99e Initial load
duke
parents:
diff changeset
317 C2_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_compiler2
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
318 ZERO_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_zero
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
319 SHARK_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_shark
3547
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
320 GRAAL_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_graal
0
a61af66fc99e Initial load
duke
parents:
diff changeset
321 C1_DIR=$(C1_BASE_DIR)/$(VM_SUBDIR)
a61af66fc99e Initial load
duke
parents:
diff changeset
322 C2_DIR=$(C2_BASE_DIR)/$(VM_SUBDIR)
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
323 ZERO_DIR=$(ZERO_BASE_DIR)/$(VM_SUBDIR)
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
324 SHARK_DIR=$(SHARK_BASE_DIR)/$(VM_SUBDIR)
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
325 MINIMAL1_BASE_DIR=$(OUTPUTDIR)/$(VM_PLATFORM)_minimal1
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
326 MINIMAL1_DIR=$(MINIMAL1_BASE_DIR)/$(VM_SUBDIR)
3547
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
327 GRAAL_DIR=$(GRAAL_BASE_DIR)/$(VM_SUBDIR)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
328
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
329 ifeq ($(JVM_VARIANT_SERVER), true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
330 MISC_DIR=$(C2_DIR)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
331 GEN_DIR=$(C2_BASE_DIR)/generated
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
332 endif
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
333 ifeq ($(JVM_VARIANT_CLIENT), true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
334 MISC_DIR=$(C1_DIR)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
335 GEN_DIR=$(C1_BASE_DIR)/generated
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
336 endif
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
337 ifeq ($(JVM_VARIANT_ZEROSHARK), true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
338 MISC_DIR=$(SHARK_DIR)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
339 GEN_DIR=$(SHARK_BASE_DIR)/generated
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
340 endif
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
341 ifeq ($(JVM_VARIANT_ZERO), true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
342 MISC_DIR=$(ZERO_DIR)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
343 GEN_DIR=$(ZERO_BASE_DIR)/generated
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
344 endif
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
345 ifeq ($(JVM_VARIANT_MINIMAL1), true)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
346 MISC_DIR=$(MINIMAL1_DIR)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
347 GEN_DIR=$(MINIMAL1_BASE_DIR)/generated
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
348 endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
349
a61af66fc99e Initial load
duke
parents:
diff changeset
350 # Bin files (windows)
a61af66fc99e Initial load
duke
parents:
diff changeset
351 ifeq ($(OSNAME),windows)
a61af66fc99e Initial load
duke
parents:
diff changeset
352
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
353 # Get jvm.lib
0
a61af66fc99e Initial load
duke
parents:
diff changeset
354 $(EXPORT_LIB_DIR)/%.lib: $(MISC_DIR)/%.lib
a61af66fc99e Initial load
duke
parents:
diff changeset
355 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
356
a61af66fc99e Initial load
duke
parents:
diff changeset
357 # Other libraries (like SA)
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4940
diff changeset
358 $(EXPORT_JRE_BIN_DIR)/%.diz: $(MISC_DIR)/%.diz
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4940
diff changeset
359 $(install-file)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
360 $(EXPORT_JRE_BIN_DIR)/%.dll: $(MISC_DIR)/%.dll
a61af66fc99e Initial load
duke
parents:
diff changeset
361 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
362 $(EXPORT_JRE_BIN_DIR)/%.pdb: $(MISC_DIR)/%.pdb
a61af66fc99e Initial load
duke
parents:
diff changeset
363 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
364 $(EXPORT_JRE_BIN_DIR)/%.map: $(MISC_DIR)/%.map
a61af66fc99e Initial load
duke
parents:
diff changeset
365 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
366
a61af66fc99e Initial load
duke
parents:
diff changeset
367 # Client files always come from C1 area
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4940
diff changeset
368 $(EXPORT_CLIENT_DIR)/%.diz: $(C1_DIR)/%.diz
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4940
diff changeset
369 $(install-file)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
370 $(EXPORT_CLIENT_DIR)/%.dll: $(C1_DIR)/%.dll
a61af66fc99e Initial load
duke
parents:
diff changeset
371 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
372 $(EXPORT_CLIENT_DIR)/%.pdb: $(C1_DIR)/%.pdb
a61af66fc99e Initial load
duke
parents:
diff changeset
373 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
374 $(EXPORT_CLIENT_DIR)/%.map: $(C1_DIR)/%.map
a61af66fc99e Initial load
duke
parents:
diff changeset
375 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 # Server files always come from C2 area
6020
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4940
diff changeset
378 $(EXPORT_SERVER_DIR)/%.diz: $(C2_DIR)/%.diz
d652a62d6e03 7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents: 4940
diff changeset
379 $(install-file)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
380 $(EXPORT_SERVER_DIR)/%.dll: $(C2_DIR)/%.dll
a61af66fc99e Initial load
duke
parents:
diff changeset
381 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
382 $(EXPORT_SERVER_DIR)/%.pdb: $(C2_DIR)/%.pdb
a61af66fc99e Initial load
duke
parents:
diff changeset
383 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
384 $(EXPORT_SERVER_DIR)/%.map: $(C2_DIR)/%.map
a61af66fc99e Initial load
duke
parents:
diff changeset
385 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
386 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
387
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
388 # Minimal JVM files always come from minimal area
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
389 $(EXPORT_MINIMAL_DIR)/%.diz: $(MINIMAL1_DIR)/%.diz
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
390 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
391 $(EXPORT_MINIMAL_DIR)/%.dll: $(MINIMAL1_DIR)/%.dll
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
392 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
393 $(EXPORT_MINIMAL_DIR)/%.pdb: $(MINIMAL1_DIR)/%.pdb
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
394 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
395 $(EXPORT_MINIMAL_DIR)/%.map: $(MINIMAL1_DIR)/%.map
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
396 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
397
0
a61af66fc99e Initial load
duke
parents:
diff changeset
398 # Shared Library
a61af66fc99e Initial load
duke
parents:
diff changeset
399 ifneq ($(OSNAME),windows)
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
400 ifeq ($(JVM_VARIANT_SERVER), true)
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
401 # C2
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
402 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C2_DIR)/%.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
403 $(install-file)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
404 $(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(C2_DIR)/%.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
405 $(install-file)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
406 $(EXPORT_SERVER_DIR)/64/%.$(LIBRARY_SUFFIX): $(C2_DIR)/%.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
407 $(install-file)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
408 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(C2_DIR)/%.debuginfo
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
409 $(install-file)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
410 $(EXPORT_SERVER_DIR)/%.debuginfo: $(C2_DIR)/%.debuginfo
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
411 $(install-file)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
412 $(EXPORT_SERVER_DIR)/64/%.debuginfo: $(C2_DIR)/%.debuginfo
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
413 $(install-file)
6022
dcubed
parents: 5946 6021
diff changeset
414 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(C2_DIR)/%.diz
dcubed
parents: 5946 6021
diff changeset
415 $(install-file)
dcubed
parents: 5946 6021
diff changeset
416 $(EXPORT_SERVER_DIR)/%.diz: $(C2_DIR)/%.diz
dcubed
parents: 5946 6021
diff changeset
417 $(install-file)
dcubed
parents: 5946 6021
diff changeset
418 $(EXPORT_SERVER_DIR)/64/%.diz: $(C2_DIR)/%.diz
dcubed
parents: 5946 6021
diff changeset
419 $(install-file)
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
420
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
421 # Graal
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
422 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(GRAAL_DIR)/%.$(LIBRARY_SUFFIX)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
423 $(install-file)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
424 $(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(GRAAL_DIR)/%.$(LIBRARY_SUFFIX)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
425 $(install-file)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
426 $(EXPORT_SERVER_DIR)/64/%.$(LIBRARY_SUFFIX): $(GRAAL_DIR)/%.$(LIBRARY_SUFFIX)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
427 $(install-file)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
428 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(GRAAL_DIR)/%.debuginfo
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
429 $(install-file)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
430 $(EXPORT_SERVER_DIR)/%.debuginfo: $(GRAAL_DIR)/%.debuginfo
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
431 $(install-file)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
432 $(EXPORT_SERVER_DIR)/64/%.debuginfo: $(GRAAL_DIR)/%.debuginfo
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
433 $(install-file)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
434 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(GRAAL_DIR)/%.diz
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
435 $(install-file)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
436 $(EXPORT_SERVER_DIR)/%.diz: $(GRAAL_DIR)/%.diz
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
437 $(install-file)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
438 $(EXPORT_SERVER_DIR)/64/%.diz: $(GRAAL_DIR)/%.diz
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
439 $(install-file)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
440 endif
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
441 ifeq ($(JVM_VARIANT_CLIENT), true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
442 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(C1_DIR)/%.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
443 $(install-file)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
444 $(EXPORT_CLIENT_DIR)/%.$(LIBRARY_SUFFIX): $(C1_DIR)/%.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
445 $(install-file)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
446 $(EXPORT_CLIENT_DIR)/64/%.$(LIBRARY_SUFFIX): $(C1_DIR)/%.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
447 $(install-file)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
448 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(C1_DIR)/%.debuginfo
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
449 $(install-file)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
450 $(EXPORT_CLIENT_DIR)/%.debuginfo: $(C1_DIR)/%.debuginfo
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
451 $(install-file)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
452 $(EXPORT_CLIENT_DIR)/64/%.debuginfo: $(C1_DIR)/%.debuginfo
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
453 $(install-file)
6022
dcubed
parents: 5946 6021
diff changeset
454 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(C1_DIR)/%.diz
dcubed
parents: 5946 6021
diff changeset
455 $(install-file)
dcubed
parents: 5946 6021
diff changeset
456 $(EXPORT_CLIENT_DIR)/%.diz: $(C1_DIR)/%.diz
dcubed
parents: 5946 6021
diff changeset
457 $(install-file)
dcubed
parents: 5946 6021
diff changeset
458 $(EXPORT_CLIENT_DIR)/64/%.diz: $(C1_DIR)/%.diz
dcubed
parents: 5946 6021
diff changeset
459 $(install-file)
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
460 endif
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
461 ifeq ($(JVM_VARIANT_ZEROSHARK), true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
462 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(SHARK_DIR)/%.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
463 $(install-file)
6926
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
464 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo): $(SHARK_DIR)/%.debuginfo
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
465 $(install-file)
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
466 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(SHARK_DIR)/%.diz
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
467 $(install-file)
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
468 $(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(SHARK_DIR)/%.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
469 $(install-file)
6926
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
470 $(EXPORT_SERVER_DIR)/%.debuginfo: $(SHARK_DIR)/%.debuginfo
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
471 $(install-file)
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
472 $(EXPORT_SERVER_DIR)/%.diz: $(SHARK_DIR)/%.diz
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
473 $(install-file)
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
474 endif
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
475 ifeq ($(JVM_VARIANT_ZERO), true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
476 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(ZERO_DIR)/%.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
477 $(install-file)
6926
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
478 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(ZERO_DIR)/%.debuginfo
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
479 $(install-file)
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
480 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(ZERO_DIR)/%.diz
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
481 $(install-file)
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
482 $(EXPORT_SERVER_DIR)/%.$(LIBRARY_SUFFIX): $(ZERO_DIR)/%.$(LIBRARY_SUFFIX)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
483 $(install-file)
6926
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
484 $(EXPORT_SERVER_DIR)/%.debuginfo: $(ZERO_DIR)/%.debuginfo
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
485 $(install-file)
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
486 $(EXPORT_SERVER_DIR)/%.diz: $(ZERO_DIR)/%.diz
a3e2f723f2a5 8000780: make Zero build and run with JDK8
twisti
parents: 6854
diff changeset
487 $(install-file)
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
488 endif
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
489 ifeq ($(JVM_VARIANT_MINIMAL1), true)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
490 $(EXPORT_JRE_LIB_ARCH_DIR)/%.$(LIBRARY_SUFFIX): $(MINIMAL1_DIR)/%.$(LIBRARY_SUFFIX)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
491 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
492 $(EXPORT_MINIMAL_DIR)/%.$(LIBRARY_SUFFIX): $(MINIMAL1_DIR)/%.$(LIBRARY_SUFFIX)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
493 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
494 $(EXPORT_MINIMAL_DIR)/64/%.$(LIBRARY_SUFFIX): $(MINIMAL1_DIR)/%.$(LIBRARY_SUFFIX)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
495 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
496 $(EXPORT_JRE_LIB_ARCH_DIR)/%.debuginfo: $(MINIMAL1_DIR)/%.debuginfo
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
497 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
498 $(EXPORT_MINIMAL_DIR)/%.debuginfo: $(MINIMAL1_DIR)/%.debuginfo
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
499 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
500 $(EXPORT_MINIMAL_DIR)/64/%.debuginfo: $(MINIMAL1_DIR)/%.debuginfo
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
501 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
502 $(EXPORT_JRE_LIB_ARCH_DIR)/%.diz: $(MINIMAL1_DIR)/%.diz
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
503 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
504 $(EXPORT_MINIMAL_DIR)/%.diz: $(MINIMAL1_DIR)/%.diz
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
505 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
506 $(EXPORT_MINIMAL_DIR)/64/%.diz: $(MINIMAL1_DIR)/%.diz
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
507 $(install-file)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
508 endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
509 endif
a61af66fc99e Initial load
duke
parents:
diff changeset
510
a61af66fc99e Initial load
duke
parents:
diff changeset
511 # Jar file (sa-jdi.jar)
a61af66fc99e Initial load
duke
parents:
diff changeset
512 $(EXPORT_LIB_DIR)/%.jar: $(GEN_DIR)/%.jar
a61af66fc99e Initial load
duke
parents:
diff changeset
513 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
514
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
515 # Shared jar files
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
516 $(EXPORT_JRE_LIB_DIR)/%.jar: $(SHARED_DIR)/%.jar
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
517 $(install-file)
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
518
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4006
diff changeset
519 # Include files (jvmti.h, jvmticmlr.h, jni.h, $(JDK_INCLUDE_SUBDIR)/jni_md.h, jmm.h, jfr.h)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
520 $(EXPORT_INCLUDE_DIR)/%: $(GEN_DIR)/jvmtifiles/%
a61af66fc99e Initial load
duke
parents:
diff changeset
521 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
522
1184
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 196
diff changeset
523 $(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/code/%
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 196
diff changeset
524 $(install-file)
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 196
diff changeset
525
0
a61af66fc99e Initial load
duke
parents:
diff changeset
526 $(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/prims/%
a61af66fc99e Initial load
duke
parents:
diff changeset
527 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
528
2199
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2192
diff changeset
529 HS_JNI_ARCH_SRC=$(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(HS_ARCH)/vm/jni_$(HS_ARCH).h)
d8a72fbc4be7 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 2192
diff changeset
530 $(EXPORT_INCLUDE_DIR)/$(JDK_INCLUDE_SUBDIR)/jni_md.h: $(HS_JNI_ARCH_SRC)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
531 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
532
a61af66fc99e Initial load
duke
parents:
diff changeset
533 $(EXPORT_INCLUDE_DIR)/%: $(HS_SRC_DIR)/share/vm/services/%
a61af66fc99e Initial load
duke
parents:
diff changeset
534 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
535
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4006
diff changeset
536 JFR_EXISTS=$(shell if [ -d $(HS_ALT_SRC) ]; then echo 1; else echo 0; fi)
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4006
diff changeset
537 # export jfr.h
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4006
diff changeset
538 ifeq ($JFR_EXISTS,1)
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4006
diff changeset
539 $(EXPORT_INCLUDE_DIR)/%: $(HS_ALT_SRC)/share/vm/jfr/agent/%
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4006
diff changeset
540 $(install-file)
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4006
diff changeset
541 else
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4006
diff changeset
542 $(EXPORT_INCLUDE_DIR)/jfr.h:
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4006
diff changeset
543 endif
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 4006
diff changeset
544
0
a61af66fc99e Initial load
duke
parents:
diff changeset
545 # Doc files (jvmti.html)
a61af66fc99e Initial load
duke
parents:
diff changeset
546 $(EXPORT_DOCS_DIR)/platform/jvmti/%: $(DOCS_DIR)/%
a61af66fc99e Initial load
duke
parents:
diff changeset
547 $(install-file)
a61af66fc99e Initial load
duke
parents:
diff changeset
548
a61af66fc99e Initial load
duke
parents:
diff changeset
549 # Xusage file
7951
8b46b0196eb0 8000692: Remove old KERNEL code
zgu
parents: 6926
diff changeset
550 $(EXPORT_SERVER_DIR)/Xusage.txt $(EXPORT_CLIENT_DIR)/Xusage.txt $(EXPORT_MINIMAL_DIR)/Xusage.txt: $(XUSAGE)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
551 $(prep-target)
a61af66fc99e Initial load
duke
parents:
diff changeset
552 $(RM) $@.temp
a61af66fc99e Initial load
duke
parents:
diff changeset
553 $(SED) 's/\(separated by \)[;:]/\1$(PATH_SEP)/g' $< > $@.temp
a61af66fc99e Initial load
duke
parents:
diff changeset
554 $(MV) $@.temp $@
a61af66fc99e Initial load
duke
parents:
diff changeset
555
a61af66fc99e Initial load
duke
parents:
diff changeset
556 #
a61af66fc99e Initial load
duke
parents:
diff changeset
557 # Clean rules
a61af66fc99e Initial load
duke
parents:
diff changeset
558 #
a61af66fc99e Initial load
duke
parents:
diff changeset
559 clobber clean: clean_build clean_export clean_jdk
a61af66fc99e Initial load
duke
parents:
diff changeset
560 clean_build:
8212
ed3fa3ae7b61 applied patch to Makefile system for building graal.jar (CR-102)
Doug Simon <doug.simon@oracle.com>
parents: 8124
diff changeset
561 $(RM) -r $(SHARED_DIR)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
562 $(RM) -r $(C1_DIR)
a61af66fc99e Initial load
duke
parents:
diff changeset
563 $(RM) -r $(C2_DIR)
1010
354d3184f6b2 6890308: integrate zero assembler hotspot changes
never
parents: 196
diff changeset
564 $(RM) -r $(ZERO_DIR)
1692
d2ede61b7a12 6976186: integrate Shark HotSpot changes
twisti
parents: 1681
diff changeset
565 $(RM) -r $(SHARK_DIR)
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
566 $(RM) -r $(MINIMAL1_DIR)
3547
44da449fc29c Update linux makefiles to create a graal VM, make a few run* +x
Gilles Duboscq <gilles.duboscq@oracle.com>
parents: 2273
diff changeset
567 $(RM) -r $(GRAAL_DIR)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
568 clean_export:
a61af66fc99e Initial load
duke
parents:
diff changeset
569 $(RM) -r $(EXPORT_PATH)
a61af66fc99e Initial load
duke
parents:
diff changeset
570 clean_jdk:
a61af66fc99e Initial load
duke
parents:
diff changeset
571 $(RM) -r $(JDK_IMAGE_DIR)
a61af66fc99e Initial load
duke
parents:
diff changeset
572
a61af66fc99e Initial load
duke
parents:
diff changeset
573 #
a61af66fc99e Initial load
duke
parents:
diff changeset
574 # Create JDK and place this build into it
a61af66fc99e Initial load
duke
parents:
diff changeset
575 #
a61af66fc99e Initial load
duke
parents:
diff changeset
576 create_jdk: copy_jdk update_jdk
a61af66fc99e Initial load
duke
parents:
diff changeset
577
a61af66fc99e Initial load
duke
parents:
diff changeset
578 update_jdk: export_product_jdk export_fastdebug_jdk test_jdk
a61af66fc99e Initial load
duke
parents:
diff changeset
579
a61af66fc99e Initial load
duke
parents:
diff changeset
580 copy_jdk: $(JDK_IMAGE_DIR)/jre/lib/rt.jar
a61af66fc99e Initial load
duke
parents:
diff changeset
581
a61af66fc99e Initial load
duke
parents:
diff changeset
582 $(JDK_IMAGE_DIR)/jre/lib/rt.jar:
a61af66fc99e Initial load
duke
parents:
diff changeset
583 $(RM) -r $(JDK_IMAGE_DIR)
a61af66fc99e Initial load
duke
parents:
diff changeset
584 $(MKDIR) -p $(JDK_IMAGE_DIR)
a61af66fc99e Initial load
duke
parents:
diff changeset
585 ($(CD) $(JDK_IMPORT_PATH) && \
a61af66fc99e Initial load
duke
parents:
diff changeset
586 $(TAR) -cf - *) | \
a61af66fc99e Initial load
duke
parents:
diff changeset
587 ($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -)
a61af66fc99e Initial load
duke
parents:
diff changeset
588
8780
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
589
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
590 # Testing the built JVM
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
591 RUN_JVM=JAVA_HOME=$(JDK_IMPORT_PATH) $(JDK_IMPORT_PATH)/bin/java -d$(ARCH_DATA_MODEL) -Dsun.java.launcher=gamma
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
592 generic_test:
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
593 @$(ECHO) "Running with: $(ALTJVM_DIR)"
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
594 @$(RUN_JVM) -XXaltjvm=$(ALTJVM_DIR) -Xinternalversion
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
595 @$(RUN_JVM) -XXaltjvm=$(ALTJVM_DIR) -showversion -help
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
596
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
597 # C2 test targets
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
598 test_product test_optimized test_fastdebug test_debug:
8780
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
599 @$(MAKE) generic_test ALTJVM_DIR="$(C2_DIR)/$(@:test_%=%)"
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
600
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
601 # C1 test targets
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
602 test_product1 test_optimized1 test_fastdebug1 test_debug1:
8780
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
603 ifeq ($(ARCH_DATA_MODEL), 32)
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
604 @$(MAKE) generic_test ALTJVM_DIR="$(C1_DIR)/$(@:test_%1=%)"
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
605 else
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
606 @$(ECHO) "No compiler1 ($(@:test_%=%)) for ARCH_DATA_MODEL=$(ARCH_DATA_MODEL)"
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
607 endif
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
608
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
609 # Zero test targets
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
610 test_productzero test_optimizedzero test_fastdebugzero test_debugzero:
8780
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
611 @$(MAKE) generic_test ALTJVM_DIR="$(ZERO_DIR)/$(@:test_%zero=%)"
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
612
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
613 # Shark test targets
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
614 test_productshark test_optimizedshark test_fastdebugshark test_debugshark:
8780
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
615 @$(MAKE) generic_test ALTJVM_DIR="$(SHARK_DIR)/$(@:test_%shark=%)"
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
616
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
617 # Minimal1 test targets
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
618 test_productminimal1 test_optimizedminimal1 test_fastdebugminimal1 test_debugminimal1:
8780
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
619 @$(MAKE) generic_test ALTJVM_DIR="$(MINIMAL1_DIR)/$(@:test_%minimal1=%)"
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
620
98f3af397705 8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents: 8098
diff changeset
621
0
a61af66fc99e Initial load
duke
parents:
diff changeset
622 test_jdk:
5946
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
623 ifeq ($(JVM_VARIANT_CLIENT), true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
624 $(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -client -Xinternalversion
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
625 $(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -client -version
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
626 endif
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
627 ifeq ($(findstring true, $(JVM_VARIANT_SERVER)\
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
628 $(JVM_VARIANT_ZERO)$(JVM_VARIANT_ZEROSHARK)), true)
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
629 $(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -server -Xinternalversion
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
630 $(JDK_IMAGE_DIR)/bin/java -d$(ARCH_DATA_MODEL) -server -version
3d7ea1dbe0de 7141246: build-infra merge: Introduce new JVM_VARIANT* to control which kind of jvm gets built
erikj
parents: 5915
diff changeset
631 endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
632
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
633 copy_product_jdk::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
634 $(RM) -r $(JDK_IMAGE_DIR)
a61af66fc99e Initial load
duke
parents:
diff changeset
635 $(MKDIR) -p $(JDK_IMAGE_DIR)
a61af66fc99e Initial load
duke
parents:
diff changeset
636 ($(CD) $(JDK_IMPORT_PATH) && \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
637 $(TAR) -cf - $(JDK_DIRS)) | \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
638 ($(CD) $(JDK_IMAGE_DIR) && $(TAR) -xf -)
a61af66fc99e Initial load
duke
parents:
diff changeset
639
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
640 copy_fastdebug_jdk::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
641 $(RM) -r $(JDK_IMAGE_DIR)/fastdebug
a61af66fc99e Initial load
duke
parents:
diff changeset
642 $(MKDIR) -p $(JDK_IMAGE_DIR)/fastdebug
a61af66fc99e Initial load
duke
parents:
diff changeset
643 if [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \
a61af66fc99e Initial load
duke
parents:
diff changeset
644 ($(CD) $(JDK_IMPORT_PATH)/fastdebug && \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
645 $(TAR) -cf - $(JDK_DIRS)) | \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
646 ($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \
a61af66fc99e Initial load
duke
parents:
diff changeset
647 else \
a61af66fc99e Initial load
duke
parents:
diff changeset
648 ($(CD) $(JDK_IMPORT_PATH) && \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
649 $(TAR) -cf - $(JDK_DIRS)) | \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
650 ($(CD) $(JDK_IMAGE_DIR)/fastdebug && $(TAR) -xf -) ; \
a61af66fc99e Initial load
duke
parents:
diff changeset
651 fi
a61af66fc99e Initial load
duke
parents:
diff changeset
652
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
653 copy_debug_jdk::
0
a61af66fc99e Initial load
duke
parents:
diff changeset
654 $(RM) -r $(JDK_IMAGE_DIR)/debug
a61af66fc99e Initial load
duke
parents:
diff changeset
655 $(MKDIR) -p $(JDK_IMAGE_DIR)/debug
a61af66fc99e Initial load
duke
parents:
diff changeset
656 if [ -d $(JDK_IMPORT_PATH)/debug ] ; then \
a61af66fc99e Initial load
duke
parents:
diff changeset
657 ($(CD) $(JDK_IMPORT_PATH)/debug && \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
658 $(TAR) -cf - $(JDK_DIRS)) | \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
659 ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
a61af66fc99e Initial load
duke
parents:
diff changeset
660 elif [ -d $(JDK_IMPORT_PATH)/fastdebug ] ; then \
a61af66fc99e Initial load
duke
parents:
diff changeset
661 ($(CD) $(JDK_IMPORT_PATH)/fastdebug && \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
662 $(TAR) -cf - $(JDK_DIRS)) | \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
663 ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
a61af66fc99e Initial load
duke
parents:
diff changeset
664 else \
a61af66fc99e Initial load
duke
parents:
diff changeset
665 ($(CD) $(JDK_IMPORT_PATH) && \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
666 $(TAR) -cf - $(JDK_DIRS)) | \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
667 ($(CD) $(JDK_IMAGE_DIR)/debug && $(TAR) -xf -) ; \
a61af66fc99e Initial load
duke
parents:
diff changeset
668 fi
a61af66fc99e Initial load
duke
parents:
diff changeset
669
a61af66fc99e Initial load
duke
parents:
diff changeset
670 #
a61af66fc99e Initial load
duke
parents:
diff changeset
671 # Check target
a61af66fc99e Initial load
duke
parents:
diff changeset
672 #
a61af66fc99e Initial load
duke
parents:
diff changeset
673 check: variable_check
a61af66fc99e Initial load
duke
parents:
diff changeset
674
a61af66fc99e Initial load
duke
parents:
diff changeset
675 #
a61af66fc99e Initial load
duke
parents:
diff changeset
676 # Help target
a61af66fc99e Initial load
duke
parents:
diff changeset
677 #
a61af66fc99e Initial load
duke
parents:
diff changeset
678 help: intro_help target_help variable_help notes_help examples_help
a61af66fc99e Initial load
duke
parents:
diff changeset
679
a61af66fc99e Initial load
duke
parents:
diff changeset
680 # Intro help message
a61af66fc99e Initial load
duke
parents:
diff changeset
681 intro_help:
a61af66fc99e Initial load
duke
parents:
diff changeset
682 @$(ECHO) \
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
683 "Makefile for the Hotspot workspace."
0
a61af66fc99e Initial load
duke
parents:
diff changeset
684 @$(ECHO) \
a61af66fc99e Initial load
duke
parents:
diff changeset
685 "Default behavior is to build and create an export area for the j2se builds."
a61af66fc99e Initial load
duke
parents:
diff changeset
686
a61af66fc99e Initial load
duke
parents:
diff changeset
687 # Target help
a61af66fc99e Initial load
duke
parents:
diff changeset
688 target_help:
a61af66fc99e Initial load
duke
parents:
diff changeset
689 @$(ECHO) "help: This help message"
a61af66fc99e Initial load
duke
parents:
diff changeset
690 @$(ECHO) "all: Same as: all_product all_fastdebug"
a61af66fc99e Initial load
duke
parents:
diff changeset
691 @$(ECHO) "world: Same as: all create_jdk"
a61af66fc99e Initial load
duke
parents:
diff changeset
692 @$(ECHO) "all_product: Same as: product product1 export_product"
a61af66fc99e Initial load
duke
parents:
diff changeset
693 @$(ECHO) "all_fastdebug: Same as: fastdebug fastdebug1 export_fastdebug"
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
694 @$(ECHO) "all_debug: Same as: debug debug1 export_debug"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
695 @$(ECHO) "all_optimized: Same as: optimized optimized1 export_optimized"
a61af66fc99e Initial load
duke
parents:
diff changeset
696 @$(ECHO) "clean: Clean all areas"
a61af66fc99e Initial load
duke
parents:
diff changeset
697 @$(ECHO) "export_product: Export product files to EXPORT_PATH"
a61af66fc99e Initial load
duke
parents:
diff changeset
698 @$(ECHO) "export_fastdebug: Export fastdebug files to EXPORT_PATH"
a61af66fc99e Initial load
duke
parents:
diff changeset
699 @$(ECHO) "export_debug: Export debug files to EXPORT_PATH"
a61af66fc99e Initial load
duke
parents:
diff changeset
700 @$(ECHO) "export_optimized: Export optimized files to EXPORT_PATH"
a61af66fc99e Initial load
duke
parents:
diff changeset
701 @$(ECHO) "create_jdk: Create JDK image, export all files into it"
a61af66fc99e Initial load
duke
parents:
diff changeset
702 @$(ECHO) "update_jdk: Update JDK image with fresh exported files"
a61af66fc99e Initial load
duke
parents:
diff changeset
703 @$(ECHO) " "
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
704 @$(ECHO) "Other targets are:"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
705 @$(ECHO) " $(C1_VM_TARGETS)"
a61af66fc99e Initial load
duke
parents:
diff changeset
706 @$(ECHO) " $(C2_VM_TARGETS)"
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
707 @$(ECHO) " $(MINIMAL1_VM_TARGETS)"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
708
a61af66fc99e Initial load
duke
parents:
diff changeset
709 # Variable help (only common ones used by this workspace)
a61af66fc99e Initial load
duke
parents:
diff changeset
710 variable_help: variable_help_intro variable_list variable_help_end
a61af66fc99e Initial load
duke
parents:
diff changeset
711 variable_help_intro:
a61af66fc99e Initial load
duke
parents:
diff changeset
712 @$(ECHO) "--- Common Variables ---"
a61af66fc99e Initial load
duke
parents:
diff changeset
713 variable_help_end:
a61af66fc99e Initial load
duke
parents:
diff changeset
714 @$(ECHO) " "
a61af66fc99e Initial load
duke
parents:
diff changeset
715 @$(ECHO) "--- Make Arguments ---"
a61af66fc99e Initial load
duke
parents:
diff changeset
716 @$(ECHO) "MAKE_ARGS=$(MAKE_ARGS)"
a61af66fc99e Initial load
duke
parents:
diff changeset
717
a61af66fc99e Initial load
duke
parents:
diff changeset
718 # One line descriptions for the variables
a61af66fc99e Initial load
duke
parents:
diff changeset
719 SLASH_JAVA.desc = Root of all build tools, e.g. /java or J:
a61af66fc99e Initial load
duke
parents:
diff changeset
720 OUTPUTDIR.desc = Output directory, default is build/<osname>
a61af66fc99e Initial load
duke
parents:
diff changeset
721 BOOTDIR.desc = JDK used to compile agent java source and test with
a61af66fc99e Initial load
duke
parents:
diff changeset
722 JDK_IMPORT_PATH.desc = Promoted JDK to copy for 'create_jdk'
4940
f09ae3853e3b 7143766: add ALT_JDK_IMAGE_DIR and improve test_jdk
twisti
parents: 4865
diff changeset
723 JDK_IMAGE_DIR.desc = Directory to place JDK to copy
0
a61af66fc99e Initial load
duke
parents:
diff changeset
724 EXPORT_PATH.desc = Directory to place files to export for JDK build
a61af66fc99e Initial load
duke
parents:
diff changeset
725
a61af66fc99e Initial load
duke
parents:
diff changeset
726 # Make variables to print out (description and value)
a61af66fc99e Initial load
duke
parents:
diff changeset
727 VARIABLE_PRINTVAL_LIST += \
a61af66fc99e Initial load
duke
parents:
diff changeset
728 SLASH_JAVA \
a61af66fc99e Initial load
duke
parents:
diff changeset
729 OUTPUTDIR \
a61af66fc99e Initial load
duke
parents:
diff changeset
730 BOOTDIR \
a61af66fc99e Initial load
duke
parents:
diff changeset
731 JDK_IMPORT_PATH \
4940
f09ae3853e3b 7143766: add ALT_JDK_IMAGE_DIR and improve test_jdk
twisti
parents: 4865
diff changeset
732 JDK_IMAGE_DIR \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
733 EXPORT_PATH
a61af66fc99e Initial load
duke
parents:
diff changeset
734
a61af66fc99e Initial load
duke
parents:
diff changeset
735 # Make variables that should refer to directories that exist
a61af66fc99e Initial load
duke
parents:
diff changeset
736 VARIABLE_CHECKDIR_LIST += \
a61af66fc99e Initial load
duke
parents:
diff changeset
737 SLASH_JAVA \
a61af66fc99e Initial load
duke
parents:
diff changeset
738 BOOTDIR \
a61af66fc99e Initial load
duke
parents:
diff changeset
739 JDK_IMPORT_PATH
a61af66fc99e Initial load
duke
parents:
diff changeset
740
a61af66fc99e Initial load
duke
parents:
diff changeset
741 # For pattern rules below, so all are treated the same
a61af66fc99e Initial load
duke
parents:
diff changeset
742 DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval)
a61af66fc99e Initial load
duke
parents:
diff changeset
743 DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir)
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745 # Complete variable check
a61af66fc99e Initial load
duke
parents:
diff changeset
746 variable_check: $(DO_CHECKDIR_LIST)
a61af66fc99e Initial load
duke
parents:
diff changeset
747 variable_list: $(DO_PRINTVAL_LIST) variable_check
a61af66fc99e Initial load
duke
parents:
diff changeset
748
a61af66fc99e Initial load
duke
parents:
diff changeset
749 # Pattern rule for printing out a variable
a61af66fc99e Initial load
duke
parents:
diff changeset
750 %.printval:
a61af66fc99e Initial load
duke
parents:
diff changeset
751 @$(ECHO) " ALT_$* - $($*.desc)"
a61af66fc99e Initial load
duke
parents:
diff changeset
752 @$(ECHO) " $*=$($*)"
a61af66fc99e Initial load
duke
parents:
diff changeset
753
a61af66fc99e Initial load
duke
parents:
diff changeset
754 # Pattern rule for checking to see if a variable with a directory exists
a61af66fc99e Initial load
duke
parents:
diff changeset
755 %.checkdir:
a61af66fc99e Initial load
duke
parents:
diff changeset
756 @if [ ! -d $($*) ] ; then \
a61af66fc99e Initial load
duke
parents:
diff changeset
757 $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
a61af66fc99e Initial load
duke
parents:
diff changeset
758 fi
a61af66fc99e Initial load
duke
parents:
diff changeset
759
a61af66fc99e Initial load
duke
parents:
diff changeset
760 # Pattern rule for checking to see if a variable with a file exists
a61af66fc99e Initial load
duke
parents:
diff changeset
761 %.checkfil:
a61af66fc99e Initial load
duke
parents:
diff changeset
762 @if [ ! -f $($*) ] ; then \
a61af66fc99e Initial load
duke
parents:
diff changeset
763 $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
a61af66fc99e Initial load
duke
parents:
diff changeset
764 fi
a61af66fc99e Initial load
duke
parents:
diff changeset
765
a61af66fc99e Initial load
duke
parents:
diff changeset
766 # Misc notes on help
a61af66fc99e Initial load
duke
parents:
diff changeset
767 notes_help:
a61af66fc99e Initial load
duke
parents:
diff changeset
768 @$(ECHO) \
a61af66fc99e Initial load
duke
parents:
diff changeset
769 "--- Notes --- "
a61af66fc99e Initial load
duke
parents:
diff changeset
770 @$(ECHO) \
a61af66fc99e Initial load
duke
parents:
diff changeset
771 "- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted"
a61af66fc99e Initial load
duke
parents:
diff changeset
772 @$(ECHO) \
a61af66fc99e Initial load
duke
parents:
diff changeset
773 " builds or previous release JDK builds will work."
a61af66fc99e Initial load
duke
parents:
diff changeset
774 @$(ECHO) \
a61af66fc99e Initial load
duke
parents:
diff changeset
775 "- The fastest builds have been when the workspace and the BOOTDIR are on"
a61af66fc99e Initial load
duke
parents:
diff changeset
776 @$(ECHO) \
a61af66fc99e Initial load
duke
parents:
diff changeset
777 " local disk."
a61af66fc99e Initial load
duke
parents:
diff changeset
778
a61af66fc99e Initial load
duke
parents:
diff changeset
779 examples_help:
a61af66fc99e Initial load
duke
parents:
diff changeset
780 @$(ECHO) \
a61af66fc99e Initial load
duke
parents:
diff changeset
781 "--- Examples --- "
a61af66fc99e Initial load
duke
parents:
diff changeset
782 @$(ECHO) \
a61af66fc99e Initial load
duke
parents:
diff changeset
783 " $(MAKE) all"
a61af66fc99e Initial load
duke
parents:
diff changeset
784 @$(ECHO) \
a61af66fc99e Initial load
duke
parents:
diff changeset
785 " $(MAKE) world"
a61af66fc99e Initial load
duke
parents:
diff changeset
786 @$(ECHO) \
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
787 " $(MAKE) ALT_BOOTDIR=/opt/java/jdk$(PREVIOUS_JDK_VERSION)"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
788 @$(ECHO) \
a61af66fc99e Initial load
duke
parents:
diff changeset
789 " $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk$(JDK_VERSION)"
a61af66fc99e Initial load
duke
parents:
diff changeset
790
4865
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
791 # Universal build support
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
792 ifeq ($(OS_VENDOR), Darwin)
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
793 ifeq ($(MACOSX_UNIVERSAL),true)
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
794 include $(GAMMADIR)/make/$(OSNAME)/makefiles/universal.gmk
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
795 endif
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
796 endif
481a9443f721 7123386: RFE: Preserve universal builds of HotSpot on Mac OS X
phh
parents: 4800
diff changeset
797
9152
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
798 # Compatibility for transition to new naming
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
799 warn_jvmg_deprecated:
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
800 echo "Warning: The jvmg target has been replaced with debug"
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
801 echo "Warning: Please update your usage"
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
802
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
803 jvmg: warn_jvmg_deprecated debug
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
804
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
805 jvmg1: warn_jvmg_deprecated debug1
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
806
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
807 jvmgminimal1: warn_jvmg_deprecated debugminimal1
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
808
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
809 jvmgcore: warn_jvmg_deprecated debugcore
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
810
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
811 jvmgzero: warn_jvmg_deprecated debugzero
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
812
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
813 jvmgshark: warn_jvmg_deprecated debugshark
f36e073d56a4 7104565: trim jprt build targets
drchase
parents: 8780
diff changeset
814
9159
43223d3f5dcd Merge with hsx/hotspot-comp
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8883 9152
diff changeset
815 jvmggraal: warn_jvmg_deprecated debuggraal
43223d3f5dcd Merge with hsx/hotspot-comp
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 8883 9152
diff changeset
816
0
a61af66fc99e Initial load
duke
parents:
diff changeset
817 # JPRT rule to build this workspace
a61af66fc99e Initial load
duke
parents:
diff changeset
818 include $(GAMMADIR)/make/jprt.gmk
a61af66fc99e Initial load
duke
parents:
diff changeset
819
a61af66fc99e Initial load
duke
parents:
diff changeset
820 .PHONY: all world clobber clean help $(C1_VM_TARGETS) $(C2_VM_TARGETS) \
7951
8b46b0196eb0 8000692: Remove old KERNEL code
zgu
parents: 6926
diff changeset
821 $(MINIMAL1_VM_TARGETS) \
8b46b0196eb0 8000692: Remove old KERNEL code
zgu
parents: 6926
diff changeset
822 generic_build1 generic_build2 generic_buildminimal1 generic_export \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
823 export_product export_fastdebug export_debug export_optimized \
a61af66fc99e Initial load
duke
parents:
diff changeset
824 export_jdk_product export_jdk_fastdebug export_jdk_debug \
a61af66fc99e Initial load
duke
parents:
diff changeset
825 create_jdk copy_jdk update_jdk test_jdk \
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
826 copy_product_jdk copy_fastdebug_jdk copy_debug_jdk \
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6022
diff changeset
827 $(HS_ALT_MAKE)/Makefile.make