author | kvn |
Thu, 04 Apr 2013 12:18:46 -0700 | |
changeset 16630 | 3dea566541da |
parent 16381 | 806d87cb0cc7 |
child 17006 | b9bfa72b7dda |
permissions | -rw-r--r-- |
1 | 1 |
# |
16630
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
2 |
# Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. |
|
8 |
# |
|
9 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
# accompanied this code). |
|
14 |
# |
|
15 |
# You should have received a copy of the GNU General Public License version |
|
16 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
781
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
781
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
781
diff
changeset
|
21 |
# questions. |
1 | 22 |
# |
23 |
# |
|
24 |
||
25 |
# Usage: |
|
26 |
# |
|
27 |
# $(MAKE) -f buildtree.make ARCH=arch BUILDARCH=buildarch LIBARCH=libarch |
|
28 |
# GAMMADIR=dir OS_FAMILY=os VARIANT=variant |
|
29 |
# |
|
30 |
# The macros ARCH, GAMMADIR, OS_FAMILY and VARIANT must be defined in the |
|
31 |
# environment or on the command-line: |
|
32 |
# |
|
33 |
# ARCH - sparc, i486, ... HotSpot cpu and os_cpu source directory |
|
34 |
# BUILDARCH - build directory |
|
35 |
# LIBARCH - the corresponding directory in JDK/JRE |
|
36 |
# GAMMADIR - top of workspace |
|
37 |
# OS_FAMILY - operating system |
|
38 |
# VARIANT - core, compiler1, compiler2, or tiered |
|
39 |
# HOTSPOT_RELEASE_VERSION - <major>.<minor>-b<nn> (11.0-b07) |
|
7402
554c8ae9c3e0
6987107: Add variable to add to but not modify non-fcs version string
ohair
parents:
5547
diff
changeset
|
40 |
# HOTSPOT_BUILD_VERSION - internal, internal-$(USER_RELEASE_SUFFIX) or empty |
1 | 41 |
# JRE_RELEASE_VERSION - <major>.<minor>.<micro> (1.7.0) |
42 |
# |
|
43 |
# Builds the directory trees with makefiles plus some convenience files in |
|
44 |
# each directory: |
|
45 |
# |
|
46 |
# Makefile - for "make foo" |
|
47 |
# flags.make - with macro settings |
|
48 |
# vm.make - to support making "$(MAKE) -v vm.make" in makefiles |
|
49 |
# adlc.make - |
|
50 |
# jvmti.make - generate JVMTI bindings from the spec (JSR-163) |
|
51 |
# sa.make - generate SA jar file and natives |
|
52 |
# env.[ck]sh - environment settings |
|
53 |
# |
|
54 |
# The makefiles are split this way so that "make foo" will run faster by not |
|
55 |
# having to read the dependency files for the vm. |
|
56 |
||
11955
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
11593
diff
changeset
|
57 |
-include $(SPEC) |
1 | 58 |
include $(GAMMADIR)/make/scm.make |
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
14815
diff
changeset
|
59 |
include $(GAMMADIR)/make/defs.make |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
60 |
include $(GAMMADIR)/make/altsrc.make |
1 | 61 |
|
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
14815
diff
changeset
|
62 |
|
1 | 63 |
# 'gmake MAKE_VERBOSE=y' or 'gmake QUIETLY=' gives all the gory details. |
64 |
QUIETLY$(MAKE_VERBOSE) = @ |
|
65 |
||
66 |
### maye ARCH_XXX instead? |
|
67 |
ifdef USE_GCC |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
68 |
PLATFORM_FILE = $(GAMMADIR)/make/$(OS_FAMILY)/platform_$(BUILDARCH).gcc |
1 | 69 |
GCC_LIB = /usr/local/lib |
70 |
else |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
71 |
PLATFORM_FILE = $(GAMMADIR)/make/$(OS_FAMILY)/platform_$(BUILDARCH) |
1 | 72 |
GCC_LIB = |
73 |
endif |
|
74 |
||
75 |
ifdef FORCE_TIERED |
|
76 |
ifeq ($(VARIANT),tiered) |
|
77 |
PLATFORM_DIR = $(OS_FAMILY)_$(BUILDARCH)_compiler2 |
|
78 |
else |
|
79 |
PLATFORM_DIR = $(OS_FAMILY)_$(BUILDARCH)_$(VARIANT) |
|
80 |
endif |
|
81 |
else |
|
82 |
PLATFORM_DIR = $(OS_FAMILY)_$(BUILDARCH)_$(VARIANT) |
|
83 |
endif |
|
84 |
||
85 |
# |
|
86 |
# We do two levels of exclusion in the shared directory. |
|
87 |
# TOPLEVEL excludes are pruned, they are not recursively searched, |
|
88 |
# but lower level directories can be named without fear of collision. |
|
89 |
# ALWAYS excludes are excluded at any level in the directory tree. |
|
90 |
# |
|
91 |
||
92 |
ALWAYS_EXCLUDE_DIRS = $(SCM_DIRS) |
|
93 |
||
94 |
ifeq ($(VARIANT),tiered) |
|
95 |
TOPLEVEL_EXCLUDE_DIRS = $(ALWAYS_EXCLUDE_DIRS) -o -name adlc -o -name agent |
|
96 |
else |
|
97 |
ifeq ($(VARIANT),compiler2) |
|
98 |
TOPLEVEL_EXCLUDE_DIRS = $(ALWAYS_EXCLUDE_DIRS) -o -name adlc -o -name c1 -o -name agent |
|
99 |
else |
|
100 |
# compiler1 and core use the same exclude list |
|
101 |
TOPLEVEL_EXCLUDE_DIRS = $(ALWAYS_EXCLUDE_DIRS) -o -name adlc -o -name opto -o -name libadt -o -name agent |
|
102 |
endif |
|
103 |
endif |
|
104 |
||
105 |
# Get things from the platform file. |
|
106 |
COMPILER = $(shell sed -n 's/^compiler[ ]*=[ ]*//p' $(PLATFORM_FILE)) |
|
107 |
||
108 |
SIMPLE_DIRS = \ |
|
7397 | 109 |
$(PLATFORM_DIR)/generated/dependencies \ |
1 | 110 |
$(PLATFORM_DIR)/generated/adfiles \ |
111 |
$(PLATFORM_DIR)/generated/jvmtifiles |
|
112 |
||
113 |
TARGETS = debug fastdebug jvmg optimized product profiled |
|
114 |
SUBMAKE_DIRS = $(addprefix $(PLATFORM_DIR)/,$(TARGETS)) |
|
115 |
||
116 |
# For dependencies and recursive makes. |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
117 |
BUILDTREE_MAKE = $(GAMMADIR)/make/$(OS_FAMILY)/makefiles/buildtree.make |
1 | 118 |
|
119 |
BUILDTREE_TARGETS = Makefile flags.make flags_vm.make vm.make adlc.make jvmti.make sa.make \ |
|
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
14815
diff
changeset
|
120 |
env.sh env.csh jdkpath.sh |
1 | 121 |
|
122 |
BUILDTREE_VARS = GAMMADIR=$(GAMMADIR) OS_FAMILY=$(OS_FAMILY) \ |
|
123 |
ARCH=$(ARCH) BUILDARCH=$(BUILDARCH) LIBARCH=$(LIBARCH) VARIANT=$(VARIANT) |
|
124 |
||
125 |
# Define variables to be set in flags.make. |
|
126 |
# Default values are set in make/defs.make. |
|
127 |
ifeq ($(HOTSPOT_BUILD_VERSION),) |
|
128 |
HS_BUILD_VER=$(HOTSPOT_RELEASE_VERSION) |
|
129 |
else |
|
130 |
HS_BUILD_VER=$(HOTSPOT_RELEASE_VERSION)-$(HOTSPOT_BUILD_VERSION) |
|
131 |
endif |
|
132 |
# Set BUILD_USER from system-dependent hints: $LOGNAME, $(whoami) |
|
133 |
ifndef HOTSPOT_BUILD_USER |
|
134 |
HOTSPOT_BUILD_USER := $(shell echo $$LOGNAME) |
|
135 |
endif |
|
136 |
ifndef HOTSPOT_BUILD_USER |
|
137 |
HOTSPOT_BUILD_USER := $(shell whoami) |
|
138 |
endif |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
139 |
# Define HOTSPOT_VM_DISTRO based on settings in make/openjdk_distro |
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
140 |
# or make/hotspot_distro. |
1 | 141 |
ifndef HOTSPOT_VM_DISTRO |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
142 |
ifeq ($(call if-has-altsrc,$(HS_COMMON_SRC)/,true,false),true) |
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
143 |
include $(GAMMADIR)/make/hotspot_distro |
1 | 144 |
else |
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
145 |
include $(GAMMADIR)/make/openjdk_distro |
1 | 146 |
endif |
147 |
endif |
|
148 |
||
13958
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
12503
diff
changeset
|
149 |
# if hotspot-only build and/or OPENJDK isn't passed down, need to set OPENJDK |
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
12503
diff
changeset
|
150 |
ifndef OPENJDK |
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
12503
diff
changeset
|
151 |
ifneq ($(call if-has-altsrc,$(HS_COMMON_SRC)/,true,false),true) |
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
12503
diff
changeset
|
152 |
OPENJDK=true |
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
12503
diff
changeset
|
153 |
endif |
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
12503
diff
changeset
|
154 |
endif |
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
12503
diff
changeset
|
155 |
|
1 | 156 |
BUILDTREE_VARS += HOTSPOT_RELEASE_VERSION=$(HS_BUILD_VER) HOTSPOT_BUILD_VERSION= JRE_RELEASE_VERSION=$(JRE_RELEASE_VERSION) |
157 |
||
158 |
BUILDTREE = \ |
|
159 |
$(MAKE) -f $(BUILDTREE_MAKE) $(BUILDTREE_TARGETS) $(BUILDTREE_VARS) |
|
160 |
||
161 |
BUILDTREE_COMMENT = echo "\# Generated by $(BUILDTREE_MAKE)" |
|
162 |
||
163 |
all: $(SUBMAKE_DIRS) |
|
164 |
||
165 |
# Run make in each subdirectory recursively. |
|
166 |
$(SUBMAKE_DIRS): $(SIMPLE_DIRS) FORCE |
|
167 |
$(QUIETLY) [ -d $@ ] || { mkdir -p $@; } |
|
168 |
$(QUIETLY) cd $@ && $(BUILDTREE) TARGET=$(@F) |
|
169 |
$(QUIETLY) touch $@ |
|
170 |
||
171 |
$(SIMPLE_DIRS): |
|
172 |
$(QUIETLY) mkdir -p $@ |
|
173 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
174 |
# Convenience macro which takes a source relative path, applies $(1) to the |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
175 |
# absolute path, and then replaces $(GAMMADIR) in the result with a |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
176 |
# literal "$(GAMMADIR)/" suitable for inclusion in a Makefile. |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
177 |
gamma-path=$(subst $(GAMMADIR),\$$(GAMMADIR),$(call $(1),$(HS_COMMON_SRC)/$(2))) |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
178 |
|
16630
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
179 |
# This bit is needed to enable local rebuilds. |
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
180 |
# Unless the makefile itself sets LP64, any environmental |
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
181 |
# setting of LP64 will interfere with the build. |
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
182 |
LP64_SETTING/32 = LP64 = \#empty |
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
183 |
LP64_SETTING/64 = LP64 = 1 |
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
184 |
|
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
185 |
DATA_MODE/i486 = 32 |
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
186 |
DATA_MODE/sparc = 32 |
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
187 |
DATA_MODE/sparcv9 = 64 |
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
188 |
DATA_MODE/amd64 = 64 |
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
189 |
|
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
190 |
DATA_MODE = $(DATA_MODE/$(BUILDARCH)) |
3dea566541da
8011198: LP64 setting is not preserved on Solaris after 8006965
kvn
parents:
16381
diff
changeset
|
191 |
|
1 | 192 |
flags.make: $(BUILDTREE_MAKE) ../shared_dirs.lst |
193 |
@echo Creating $@ ... |
|
194 |
$(QUIETLY) ( \ |
|
195 |
$(BUILDTREE_COMMENT); \ |
|
196 |
echo; \ |
|
197 |
echo "Platform_file = $(PLATFORM_FILE)" | sed 's|$(GAMMADIR)|$$(GAMMADIR)|'; \ |
|
198 |
sed -n '/=/s/^ */Platform_/p' < $(PLATFORM_FILE); \ |
|
199 |
echo; \ |
|
200 |
echo "GAMMADIR = $(GAMMADIR)"; \ |
|
201 |
echo "SYSDEFS = \$$(Platform_sysdefs)"; \ |
|
202 |
echo "SRCARCH = $(ARCH)"; \ |
|
203 |
echo "BUILDARCH = $(BUILDARCH)"; \ |
|
204 |
echo "LIBARCH = $(LIBARCH)"; \ |
|
205 |
echo "TARGET = $(TARGET)"; \ |
|
206 |
echo "HS_BUILD_VER = $(HS_BUILD_VER)"; \ |
|
207 |
echo "JRE_RELEASE_VER = $(JRE_RELEASE_VERSION)"; \ |
|
208 |
echo "SA_BUILD_VERSION = $(HS_BUILD_VER)"; \ |
|
209 |
echo "HOTSPOT_BUILD_USER = $(HOTSPOT_BUILD_USER)"; \ |
|
210 |
echo "HOTSPOT_VM_DISTRO = $(HOTSPOT_VM_DISTRO)"; \ |
|
13958
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
12503
diff
changeset
|
211 |
echo "OPENJDK = $(OPENJDK)"; \ |
1 | 212 |
echo "$(LP64_SETTING/$(DATA_MODE))"; \ |
213 |
echo; \ |
|
7397 | 214 |
echo "# Used for platform dispatching"; \ |
215 |
echo "TARGET_DEFINES = -DTARGET_OS_FAMILY_\$$(Platform_os_family)"; \ |
|
216 |
echo "TARGET_DEFINES += -DTARGET_ARCH_\$$(Platform_arch)"; \ |
|
217 |
echo "TARGET_DEFINES += -DTARGET_ARCH_MODEL_\$$(Platform_arch_model)"; \ |
|
218 |
echo "TARGET_DEFINES += -DTARGET_OS_ARCH_\$$(Platform_os_arch)"; \ |
|
219 |
echo "TARGET_DEFINES += -DTARGET_OS_ARCH_MODEL_\$$(Platform_os_arch_model)"; \ |
|
220 |
echo "TARGET_DEFINES += -DTARGET_COMPILER_\$$(Platform_compiler)"; \ |
|
221 |
echo "CFLAGS += \$$(TARGET_DEFINES)"; \ |
|
222 |
echo; \ |
|
223 |
echo "Src_Dirs_V = \\"; \ |
|
1 | 224 |
sed 's/$$/ \\/;s|$(GAMMADIR)|$$(GAMMADIR)|' ../shared_dirs.lst; \ |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
225 |
echo "$(call gamma-path,altsrc,cpu/$(ARCH)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
226 |
echo "$(call gamma-path,commonsrc,cpu/$(ARCH)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
227 |
echo "$(call gamma-path,altsrc,os_cpu/$(OS_FAMILY)_$(ARCH)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
228 |
echo "$(call gamma-path,commonsrc,os_cpu/$(OS_FAMILY)_$(ARCH)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
229 |
echo "$(call gamma-path,altsrc,os/$(OS_FAMILY)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
230 |
echo "$(call gamma-path,commonsrc,os/$(OS_FAMILY)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
231 |
echo "$(call gamma-path,altsrc,os/posix/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
232 |
echo "$(call gamma-path,commonsrc,os/posix/vm)"; \ |
7397 | 233 |
echo; \ |
234 |
echo "Src_Dirs_I = \\"; \ |
|
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
235 |
echo "$(call gamma-path,altsrc,share/vm/prims) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
236 |
echo "$(call gamma-path,commonsrc,share/vm/prims) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
237 |
echo "$(call gamma-path,altsrc,share/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
238 |
echo "$(call gamma-path,commonsrc,share/vm) \\"; \ |
10830
f3fedfa29811
7106766: Move the precompiled header from the src/share/vm directory
brutisso
parents:
10559
diff
changeset
|
239 |
echo "$(call gamma-path,altsrc,share/vm/precompiled) \\"; \ |
f3fedfa29811
7106766: Move the precompiled header from the src/share/vm directory
brutisso
parents:
10559
diff
changeset
|
240 |
echo "$(call gamma-path,commonsrc,share/vm/precompiled) \\"; \ |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
241 |
echo "$(call gamma-path,altsrc,cpu/$(ARCH)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
242 |
echo "$(call gamma-path,commonsrc,cpu/$(ARCH)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
243 |
echo "$(call gamma-path,altsrc,os_cpu/$(OS_FAMILY)_$(ARCH)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
244 |
echo "$(call gamma-path,commonsrc,os_cpu/$(OS_FAMILY)_$(ARCH)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
245 |
echo "$(call gamma-path,altsrc,os/$(OS_FAMILY)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
246 |
echo "$(call gamma-path,commonsrc,os/$(OS_FAMILY)/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
247 |
echo "$(call gamma-path,altsrc,os/posix/vm) \\"; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
248 |
echo "$(call gamma-path,commonsrc,os/posix/vm)"; \ |
1 | 249 |
[ -n "$(CFLAGS_BROWSE)" ] && \ |
250 |
echo && echo "CFLAGS_BROWSE = $(CFLAGS_BROWSE)"; \ |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11593
diff
changeset
|
251 |
[ -n "$(ENABLE_FULL_DEBUG_SYMBOLS)" ] && \ |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11593
diff
changeset
|
252 |
echo && echo "ENABLE_FULL_DEBUG_SYMBOLS = $(ENABLE_FULL_DEBUG_SYMBOLS)"; \ |
10559 | 253 |
[ -n "$(OBJCOPY)" ] && \ |
254 |
echo && echo "OBJCOPY = $(OBJCOPY)"; \ |
|
255 |
[ -n "$(STRIP_POLICY)" ] && \ |
|
256 |
echo && echo "STRIP_POLICY = $(STRIP_POLICY)"; \ |
|
12501
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11593
diff
changeset
|
257 |
[ -n "$(ZIP_DEBUGINFO_FILES)" ] && \ |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11593
diff
changeset
|
258 |
echo && echo "ZIP_DEBUGINFO_FILES = $(ZIP_DEBUGINFO_FILES)"; \ |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11593
diff
changeset
|
259 |
[ -n "$(ZIPEXE)" ] && \ |
ea7feae692ae
7102323: RFE: enable Full Debug Symbols Phase 1 on Solaris
dcubed
parents:
11593
diff
changeset
|
260 |
echo && echo "ZIPEXE = $(ZIPEXE)"; \ |
1 | 261 |
[ -n "$(HOTSPOT_EXTRA_SYSDEFS)" ] && \ |
262 |
echo && \ |
|
263 |
echo "HOTSPOT_EXTRA_SYSDEFS\$$(HOTSPOT_EXTRA_SYSDEFS) = $(HOTSPOT_EXTRA_SYSDEFS)" && \ |
|
264 |
echo "SYSDEFS += \$$(HOTSPOT_EXTRA_SYSDEFS)"; \ |
|
265 |
echo; \ |
|
11955
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
11593
diff
changeset
|
266 |
[ -n "$(SPEC)" ] && \ |
aeca8151886e
7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable
erikj
parents:
11593
diff
changeset
|
267 |
echo "include $(SPEC)"; \ |
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
268 |
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(VARIANT).make"; \ |
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
269 |
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(COMPILER).make"; \ |
1 | 270 |
) > $@ |
271 |
||
272 |
flags_vm.make: $(BUILDTREE_MAKE) ../shared_dirs.lst |
|
273 |
@echo Creating $@ ... |
|
274 |
$(QUIETLY) ( \ |
|
275 |
$(BUILDTREE_COMMENT); \ |
|
276 |
echo; \ |
|
277 |
[ "$(TARGET)" = profiled ] && \ |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
278 |
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/optimized.make"; \ |
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
279 |
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(TARGET).make"; \ |
1 | 280 |
) > $@ |
281 |
||
282 |
../shared_dirs.lst: $(BUILDTREE_MAKE) $(GAMMADIR)/src/share/vm |
|
283 |
@echo Creating directory list $@ |
|
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
284 |
$(QUIETLY) if [ -d $(HS_ALT_SRC)/share/vm ]; then \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
285 |
find $(HS_ALT_SRC)/share/vm/* -prune \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
286 |
-type d \! \( $(TOPLEVEL_EXCLUDE_DIRS) \) -exec find {} \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
287 |
\( $(ALWAYS_EXCLUDE_DIRS) \) -prune -o -type d -print \; > $@; \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
288 |
fi; |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
289 |
$(QUIETLY) find $(HS_COMMON_SRC)/share/vm/* -prune \ |
1 | 290 |
-type d \! \( $(TOPLEVEL_EXCLUDE_DIRS) \) -exec find {} \ |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7718
diff
changeset
|
291 |
\( $(ALWAYS_EXCLUDE_DIRS) \) -prune -o -type d -print \; >> $@ |
1 | 292 |
|
293 |
Makefile: $(BUILDTREE_MAKE) |
|
294 |
@echo Creating $@ ... |
|
295 |
$(QUIETLY) ( \ |
|
296 |
$(BUILDTREE_COMMENT); \ |
|
297 |
echo; \ |
|
298 |
echo include flags.make; \ |
|
299 |
echo; \ |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
300 |
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/top.make"; \ |
1 | 301 |
) > $@ |
302 |
||
303 |
vm.make: $(BUILDTREE_MAKE) |
|
304 |
@echo Creating $@ ... |
|
305 |
$(QUIETLY) ( \ |
|
306 |
$(BUILDTREE_COMMENT); \ |
|
307 |
echo; \ |
|
308 |
echo include flags.make; \ |
|
309 |
echo include flags_vm.make; \ |
|
310 |
echo; \ |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
311 |
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(@F)"; \ |
1 | 312 |
) > $@ |
313 |
||
314 |
adlc.make: $(BUILDTREE_MAKE) |
|
315 |
@echo Creating $@ ... |
|
316 |
$(QUIETLY) ( \ |
|
317 |
$(BUILDTREE_COMMENT); \ |
|
318 |
echo; \ |
|
319 |
echo include flags.make; \ |
|
320 |
echo; \ |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
321 |
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(@F)"; \ |
1 | 322 |
) > $@ |
323 |
||
324 |
jvmti.make: $(BUILDTREE_MAKE) |
|
325 |
@echo Creating $@ ... |
|
326 |
$(QUIETLY) ( \ |
|
327 |
$(BUILDTREE_COMMENT); \ |
|
328 |
echo; \ |
|
329 |
echo include flags.make; \ |
|
330 |
echo; \ |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
331 |
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(@F)"; \ |
1 | 332 |
) > $@ |
333 |
||
334 |
sa.make: $(BUILDTREE_MAKE) |
|
335 |
@echo Creating $@ ... |
|
336 |
$(QUIETLY) ( \ |
|
337 |
$(BUILDTREE_COMMENT); \ |
|
338 |
echo; \ |
|
339 |
echo include flags.make; \ |
|
340 |
echo; \ |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
341 |
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(@F)"; \ |
1 | 342 |
) > $@ |
343 |
||
11593 | 344 |
env.sh: $(BUILDTREE_MAKE) |
1 | 345 |
@echo Creating $@ ... |
346 |
$(QUIETLY) ( \ |
|
347 |
$(BUILDTREE_COMMENT); \ |
|
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
14815
diff
changeset
|
348 |
{ echo "JAVA_HOME=$(JDK_IMPORT_PATH)"; }; \ |
1 | 349 |
{ \ |
350 |
echo "CLASSPATH=$${CLASSPATH:+$$CLASSPATH:}.:\$${JAVA_HOME}/jre/lib/rt.jar:\$${JAVA_HOME}/jre/lib/i18n.jar"; \ |
|
351 |
} | sed s:$${JAVA_HOME:--------}:\$${JAVA_HOME}:g; \ |
|
352 |
echo "HOTSPOT_BUILD_USER=\"$${LOGNAME:-$$USER} in `basename $(GAMMADIR)`\""; \ |
|
353 |
echo "export JAVA_HOME LD_LIBRARY_PATH CLASSPATH HOTSPOT_BUILD_USER"; \ |
|
354 |
) > $@ |
|
355 |
||
11593 | 356 |
env.csh: env.sh |
1 | 357 |
@echo Creating $@ ... |
358 |
$(QUIETLY) ( \ |
|
359 |
$(BUILDTREE_COMMENT); \ |
|
16381
806d87cb0cc7
8006965: remove test_gamma and add dedicated test_* targets instead
twisti
parents:
14815
diff
changeset
|
360 |
{ echo "setenv JAVA_HOME \"$(JDK_IMPORT_PATH)\""; }; \ |
1 | 361 |
sed -n 's/^\([A-Za-z_][A-Za-z0-9_]*\)=/setenv \1 /p' $?; \ |
362 |
) > $@ |
|
363 |
||
7452
b3fa838286de
7006354: Updates to Visual Studio project creation and development launcher
sla
parents:
7403
diff
changeset
|
364 |
jdkpath.sh: $(BUILDTREE_MAKE) |
b3fa838286de
7006354: Updates to Visual Studio project creation and development launcher
sla
parents:
7403
diff
changeset
|
365 |
@echo Creating $@ ... |
b3fa838286de
7006354: Updates to Visual Studio project creation and development launcher
sla
parents:
7403
diff
changeset
|
366 |
$(QUIETLY) ( \ |
b3fa838286de
7006354: Updates to Visual Studio project creation and development launcher
sla
parents:
7403
diff
changeset
|
367 |
$(BUILDTREE_COMMENT); \ |
b3fa838286de
7006354: Updates to Visual Studio project creation and development launcher
sla
parents:
7403
diff
changeset
|
368 |
echo "JDK=${JAVA_HOME}"; \ |
b3fa838286de
7006354: Updates to Visual Studio project creation and development launcher
sla
parents:
7403
diff
changeset
|
369 |
) > $@ |
b3fa838286de
7006354: Updates to Visual Studio project creation and development launcher
sla
parents:
7403
diff
changeset
|
370 |
|
1 | 371 |
FORCE: |
372 |
||
373 |
.PHONY: all FORCE |