author | ohrstrom |
Tue, 31 Jan 2012 13:12:39 +0100 | |
changeset 11720 | b20268d74484 |
parent 11480 | 1bf714e8adb4 |
child 11721 | dcd1f62c9caf |
permissions | -rw-r--r-- |
1 | 1 |
# |
8921
14bfe81f2a9d
7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents:
8114
diff
changeset
|
2 |
# Copyright (c) 1999, 2011, 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:
5045
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5045
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:
5045
diff
changeset
|
21 |
# questions. |
1 | 22 |
# |
23 |
# |
|
24 |
||
25 |
# Rules to build JVM and related libraries, included from vm.make in the build |
|
26 |
# directory. |
|
27 |
||
28 |
# Common build rules. |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
29 |
MAKEFILES_DIR=$(GAMMADIR)/make/$(Platform_os_family)/makefiles |
1 | 30 |
include $(MAKEFILES_DIR)/rules.make |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
31 |
include $(GAMMADIR)/make/altsrc.make |
1 | 32 |
|
33 |
default: build |
|
34 |
||
35 |
#---------------------------------------------------------------------- |
|
36 |
# Defs |
|
37 |
||
38 |
GENERATED = ../generated |
|
7397 | 39 |
DEP_DIR = $(GENERATED)/dependencies |
1 | 40 |
|
7397 | 41 |
# reads the generated files defining the set of .o's and the .o .h dependencies |
42 |
-include $(DEP_DIR)/*.d |
|
1 | 43 |
|
44 |
# read machine-specific adjustments (%%% should do this via buildtree.make?) |
|
4013 | 45 |
ifeq ($(ZERO_BUILD), true) |
46 |
include $(MAKEFILES_DIR)/zeroshark.make |
|
47 |
else |
|
48 |
include $(MAKEFILES_DIR)/$(BUILDARCH).make |
|
49 |
endif |
|
1 | 50 |
|
51 |
# set VPATH so make knows where to look for source files |
|
7397 | 52 |
# Src_Dirs_V is everything in src/share/vm/*, plus the right os/*/vm and cpu/*/vm |
1 | 53 |
# The adfiles directory contains ad_<arch>.[ch]pp. |
54 |
# The jvmtifiles directory contains jvmti*.[ch]pp |
|
7397 | 55 |
Src_Dirs_V += $(GENERATED)/adfiles $(GENERATED)/jvmtifiles |
56 |
VPATH += $(Src_Dirs_V:%=%:) |
|
1 | 57 |
|
7397 | 58 |
# set INCLUDES for C preprocessor. |
59 |
Src_Dirs_I += $(GENERATED) |
|
60 |
# The order is important for the precompiled headers to work. |
|
61 |
INCLUDES += $(PRECOMPILED_HEADER_DIR:%=-I%) $(Src_Dirs_I:%=-I%) |
|
1 | 62 |
|
10559 | 63 |
# SYMFLAG is used by {jsig,saproc}.make |
64 |
ifneq ($(OBJCOPY),) |
|
65 |
# always build with debug info when we can create .debuginfo files |
|
1 | 66 |
SYMFLAG = -g |
67 |
else |
|
10559 | 68 |
ifeq (${VERSION}, debug) |
69 |
SYMFLAG = -g |
|
70 |
else |
|
71 |
SYMFLAG = |
|
72 |
endif |
|
1 | 73 |
endif |
74 |
||
75 |
# HOTSPOT_RELEASE_VERSION and HOTSPOT_BUILD_VERSION are defined |
|
76 |
# in $(GAMMADIR)/make/defs.make |
|
77 |
ifeq ($(HOTSPOT_BUILD_VERSION),) |
|
78 |
BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HOTSPOT_RELEASE_VERSION)\"" |
|
79 |
else |
|
80 |
BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HOTSPOT_RELEASE_VERSION)-$(HOTSPOT_BUILD_VERSION)\"" |
|
81 |
endif |
|
82 |
||
83 |
# The following variables are defined in the generated flags.make file. |
|
84 |
BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HS_BUILD_VER)\"" |
|
85 |
JRE_VERSION = -DJRE_RELEASE_VERSION="\"$(JRE_RELEASE_VER)\"" |
|
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
1
diff
changeset
|
86 |
HS_LIB_ARCH = -DHOTSPOT_LIB_ARCH=\"$(LIBARCH)\" |
1 | 87 |
BUILD_TARGET = -DHOTSPOT_BUILD_TARGET="\"$(TARGET)\"" |
88 |
BUILD_USER = -DHOTSPOT_BUILD_USER="\"$(HOTSPOT_BUILD_USER)\"" |
|
89 |
VM_DISTRO = -DHOTSPOT_VM_DISTRO="\"$(HOTSPOT_VM_DISTRO)\"" |
|
90 |
||
91 |
CPPFLAGS = \ |
|
92 |
${SYSDEFS} \ |
|
93 |
${INCLUDES} \ |
|
94 |
${BUILD_VERSION} \ |
|
95 |
${BUILD_TARGET} \ |
|
96 |
${BUILD_USER} \ |
|
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
1
diff
changeset
|
97 |
${HS_LIB_ARCH} \ |
1 | 98 |
${VM_DISTRO} |
99 |
||
11720
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
11480
diff
changeset
|
100 |
# This is VERY important! The version define must only be supplied to vm_version.o |
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
11480
diff
changeset
|
101 |
# If not, ccache will not re-use the cache at all, since the version string might contain |
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
11480
diff
changeset
|
102 |
# a time and date. |
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
11480
diff
changeset
|
103 |
vm_version.o: CPPFLAGS += ${JRE_VERSION} |
b20268d74484
7132779: build-infra merge: Enable ccache to work for most developer builds.
ohrstrom
parents:
11480
diff
changeset
|
104 |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10559
diff
changeset
|
105 |
ifndef JAVASE_EMBEDDED |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10559
diff
changeset
|
106 |
CFLAGS += -DINCLUDE_TRACE |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10559
diff
changeset
|
107 |
endif |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10559
diff
changeset
|
108 |
|
1 | 109 |
# CFLAGS_WARN holds compiler options to suppress/enable warnings. |
110 |
CFLAGS += $(CFLAGS_WARN/BYFILE) |
|
111 |
||
112 |
# Do not use C++ exception handling |
|
113 |
CFLAGS += $(CFLAGS/NOEX) |
|
114 |
||
115 |
# Extra flags from gnumake's invocation or environment |
|
116 |
CFLAGS += $(EXTRA_CFLAGS) |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
117 |
LFLAGS += $(EXTRA_CFLAGS) |
1 | 118 |
|
9406
e496a3f30199
7019808: build fails on Fedora 14: SELinux run-time check: execution of stack in libjvm.so
dsamersoff
parents:
9133
diff
changeset
|
119 |
# Don't set excutable bit on stack segment |
e496a3f30199
7019808: build fails on Fedora 14: SELinux run-time check: execution of stack in libjvm.so
dsamersoff
parents:
9133
diff
changeset
|
120 |
# the same could be done by separate execstack command |
e496a3f30199
7019808: build fails on Fedora 14: SELinux run-time check: execution of stack in libjvm.so
dsamersoff
parents:
9133
diff
changeset
|
121 |
LFLAGS += -Xlinker -z -Xlinker noexecstack |
e496a3f30199
7019808: build fails on Fedora 14: SELinux run-time check: execution of stack in libjvm.so
dsamersoff
parents:
9133
diff
changeset
|
122 |
|
1 | 123 |
LIBS += -lm -ldl -lpthread |
124 |
||
125 |
# By default, link the *.o into the library, not the executable. |
|
126 |
LINK_INTO$(LINK_INTO) = LIBJVM |
|
127 |
||
128 |
JDK_LIBDIR = $(JAVA_HOME)/jre/lib/$(LIBARCH) |
|
129 |
||
130 |
#---------------------------------------------------------------------- |
|
131 |
# jvm_db & dtrace |
|
132 |
include $(MAKEFILES_DIR)/dtrace.make |
|
133 |
||
134 |
#---------------------------------------------------------------------- |
|
135 |
# JVM |
|
136 |
||
4493
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
4013
diff
changeset
|
137 |
JVM = jvm |
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
4013
diff
changeset
|
138 |
LIBJVM = lib$(JVM).so |
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
4013
diff
changeset
|
139 |
LIBJVM_G = lib$(JVM)$(G_SUFFIX).so |
1 | 140 |
|
10559 | 141 |
LIBJVM_DEBUGINFO = lib$(JVM).debuginfo |
142 |
LIBJVM_G_DEBUGINFO = lib$(JVM)$(G_SUFFIX).debuginfo |
|
143 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
144 |
SPECIAL_PATHS:=adlc c1 gc_implementation opto shark libadt |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
145 |
|
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
146 |
SOURCE_PATHS=\ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
147 |
$(shell find $(HS_COMMON_SRC)/share/vm/* -type d \! \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
148 |
\( -name DUMMY $(foreach dir,$(SPECIAL_PATHS),-o -name $(dir)) \)) |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
149 |
SOURCE_PATHS+=$(HS_COMMON_SRC)/os/$(Platform_os_family)/vm |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
150 |
SOURCE_PATHS+=$(HS_COMMON_SRC)/os/posix/vm |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
151 |
SOURCE_PATHS+=$(HS_COMMON_SRC)/cpu/$(Platform_arch)/vm |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
152 |
SOURCE_PATHS+=$(HS_COMMON_SRC)/os_cpu/$(Platform_os_arch)/vm |
7397 | 153 |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10559
diff
changeset
|
154 |
ifndef JAVASE_EMBEDDED |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10559
diff
changeset
|
155 |
SOURCE_PATHS+=$(shell if [ -d $(HS_ALT_SRC)/share/vm/jfr ]; then \ |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10559
diff
changeset
|
156 |
find $(HS_ALT_SRC)/share/vm/jfr -type d; \ |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10559
diff
changeset
|
157 |
fi) |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10559
diff
changeset
|
158 |
endif |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10559
diff
changeset
|
159 |
|
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
160 |
CORE_PATHS=$(foreach path,$(SOURCE_PATHS),$(call altsrc,$(path)) $(path)) |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
161 |
CORE_PATHS+=$(GENERATED)/jvmtifiles |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
162 |
|
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
163 |
COMPILER1_PATHS := $(call altsrc,$(HS_COMMON_SRC)/share/vm/c1) |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
164 |
COMPILER1_PATHS += $(HS_COMMON_SRC)/share/vm/c1 |
7397 | 165 |
|
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
166 |
COMPILER2_PATHS := $(call altsrc,$(HS_COMMON_SRC)/share/vm/opto) |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
167 |
COMPILER2_PATHS += $(call altsrc,$(HS_COMMON_SRC)/share/vm/libadt) |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
168 |
COMPILER2_PATHS += $(HS_COMMON_SRC)/share/vm/opto |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
169 |
COMPILER2_PATHS += $(HS_COMMON_SRC)/share/vm/libadt |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
170 |
COMPILER2_PATHS += $(GENERATED)/adfiles |
7397 | 171 |
|
9126 | 172 |
SHARK_PATHS := $(GAMMADIR)/src/share/vm/shark |
173 |
||
7397 | 174 |
# Include dirs per type. |
175 |
Src_Dirs/CORE := $(CORE_PATHS) |
|
176 |
Src_Dirs/COMPILER1 := $(CORE_PATHS) $(COMPILER1_PATHS) |
|
177 |
Src_Dirs/COMPILER2 := $(CORE_PATHS) $(COMPILER2_PATHS) |
|
178 |
Src_Dirs/TIERED := $(CORE_PATHS) $(COMPILER1_PATHS) $(COMPILER2_PATHS) |
|
179 |
Src_Dirs/ZERO := $(CORE_PATHS) |
|
9126 | 180 |
Src_Dirs/SHARK := $(CORE_PATHS) $(SHARK_PATHS) |
7397 | 181 |
Src_Dirs := $(Src_Dirs/$(TYPE)) |
182 |
||
183 |
COMPILER2_SPECIFIC_FILES := opto libadt bcEscapeAnalyzer.cpp chaitin\* c2_\* runtime_\* |
|
184 |
COMPILER1_SPECIFIC_FILES := c1_\* |
|
185 |
SHARK_SPECIFIC_FILES := shark |
|
186 |
ZERO_SPECIFIC_FILES := zero |
|
187 |
||
188 |
# Always exclude these. |
|
189 |
Src_Files_EXCLUDE := jsig.c jvmtiEnvRecommended.cpp jvmtiEnvStub.cpp |
|
190 |
||
191 |
# Exclude per type. |
|
192 |
Src_Files_EXCLUDE/CORE := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp |
|
193 |
Src_Files_EXCLUDE/COMPILER1 := $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp |
|
194 |
Src_Files_EXCLUDE/COMPILER2 := $(COMPILER1_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) |
|
195 |
Src_Files_EXCLUDE/TIERED := $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) |
|
196 |
Src_Files_EXCLUDE/ZERO := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp |
|
197 |
Src_Files_EXCLUDE/SHARK := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) |
|
198 |
||
199 |
Src_Files_EXCLUDE += $(Src_Files_EXCLUDE/$(TYPE)) |
|
200 |
||
201 |
# Special handling of arch model. |
|
202 |
ifeq ($(Platform_arch_model), x86_32) |
|
203 |
Src_Files_EXCLUDE += \*x86_64\* |
|
204 |
endif |
|
205 |
ifeq ($(Platform_arch_model), x86_64) |
|
206 |
Src_Files_EXCLUDE += \*x86_32\* |
|
207 |
endif |
|
208 |
||
209 |
# Locate all source files in the given directory, excluding files in Src_Files_EXCLUDE. |
|
210 |
define findsrc |
|
7451
cc12e11b1e07
7006659: temporary adlc files are added to the build variables
stefank
parents:
7409
diff
changeset
|
211 |
$(notdir $(shell find $(1)/. ! -name . -prune \ |
cc12e11b1e07
7006659: temporary adlc files are added to the build variables
stefank
parents:
7409
diff
changeset
|
212 |
-a \( -name \*.c -o -name \*.cpp -o -name \*.s \) \ |
cc12e11b1e07
7006659: temporary adlc files are added to the build variables
stefank
parents:
7409
diff
changeset
|
213 |
-a ! \( -name DUMMY $(addprefix -o -name ,$(Src_Files_EXCLUDE)) \))) |
7397 | 214 |
endef |
215 |
||
216 |
Src_Files := $(foreach e,$(Src_Dirs),$(call findsrc,$(e))) |
|
217 |
||
7409 | 218 |
Obj_Files = $(sort $(addsuffix .o,$(basename $(Src_Files)))) |
7397 | 219 |
|
1 | 220 |
JVM_OBJ_FILES = $(Obj_Files) |
221 |
||
222 |
vm_version.o: $(filter-out vm_version.o,$(JVM_OBJ_FILES)) |
|
223 |
||
5045
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
4493
diff
changeset
|
224 |
mapfile : $(MAPFILE) vm.def |
1 | 225 |
rm -f $@ |
5045
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
4493
diff
changeset
|
226 |
awk '{ if ($$0 ~ "INSERT VTABLE SYMBOLS HERE") \ |
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
4493
diff
changeset
|
227 |
{ system ("cat vm.def"); } \ |
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
4493
diff
changeset
|
228 |
else \ |
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
4493
diff
changeset
|
229 |
{ print $$0 } \ |
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
4493
diff
changeset
|
230 |
}' > $@ < $(MAPFILE) |
1 | 231 |
|
232 |
mapfile_reorder : mapfile $(REORDERFILE) |
|
233 |
rm -f $@ |
|
234 |
cat $^ > $@ |
|
235 |
||
5045
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
4493
diff
changeset
|
236 |
vm.def: $(Res_Files) $(Obj_Files) |
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
4493
diff
changeset
|
237 |
sh $(GAMMADIR)/make/linux/makefiles/build_vm_def.sh *.o > $@ |
59dd2a304f1d
6932270: Allow Java's ELF symtab reader to use separate debuginfo files
never
parents:
4493
diff
changeset
|
238 |
|
6187 | 239 |
ifeq ($(SHARK_BUILD), true) |
4013 | 240 |
STATIC_CXX = false |
241 |
else |
|
6187 | 242 |
ifeq ($(ZERO_LIBARCH), ppc64) |
243 |
STATIC_CXX = false |
|
244 |
else |
|
245 |
STATIC_CXX = true |
|
246 |
endif |
|
4013 | 247 |
endif |
1 | 248 |
|
249 |
ifeq ($(LINK_INTO),AOUT) |
|
250 |
LIBJVM.o = |
|
251 |
LIBJVM_MAPFILE = |
|
252 |
LIBS_VM = $(LIBS) |
|
253 |
else |
|
254 |
LIBJVM.o = $(JVM_OBJ_FILES) |
|
255 |
LIBJVM_MAPFILE$(LDNOMAP) = mapfile_reorder |
|
256 |
LFLAGS_VM$(LDNOMAP) += $(MAPFLAG:FILENAME=$(LIBJVM_MAPFILE)) |
|
257 |
LFLAGS_VM += $(SONAMEFLAG:SONAME=$(LIBJVM)) |
|
258 |
||
259 |
# JVM is statically linked with libgcc[_s] and libstdc++; this is needed to |
|
260 |
# get around library dependency and compatibility issues. Must use gcc not |
|
261 |
# g++ to link. |
|
262 |
ifeq ($(STATIC_CXX), true) |
|
263 |
LFLAGS_VM += $(STATIC_LIBGCC) |
|
264 |
LIBS_VM += $(STATIC_STDCXX) |
|
265 |
else |
|
266 |
LIBS_VM += -lstdc++ |
|
267 |
endif |
|
268 |
||
269 |
LIBS_VM += $(LIBS) |
|
270 |
endif |
|
4013 | 271 |
ifeq ($(ZERO_BUILD), true) |
272 |
LIBS_VM += $(LIBFFI_LIBS) |
|
273 |
endif |
|
6187 | 274 |
ifeq ($(SHARK_BUILD), true) |
275 |
LFLAGS_VM += $(LLVM_LDFLAGS) |
|
276 |
LIBS_VM += $(LLVM_LIBS) |
|
277 |
endif |
|
1 | 278 |
|
279 |
LINK_VM = $(LINK_LIB.c) |
|
280 |
||
281 |
# rule for building precompiled header |
|
7397 | 282 |
$(PRECOMPILED_HEADER): |
1 | 283 |
$(QUIETLY) echo Generating precompiled header $@ |
7397 | 284 |
$(QUIETLY) mkdir -p $(PRECOMPILED_HEADER_DIR) |
285 |
$(QUIETLY) $(COMPILE.CC) $(DEPFLAGS) -x c++-header $(PRECOMPILED_HEADER_SRC) -o $@ $(COMPILE_DONE) |
|
1 | 286 |
|
287 |
# making the library: |
|
288 |
||
289 |
ifneq ($(JVM_BASE_ADDR),) |
|
290 |
# By default shared library is linked at base address == 0. Modify the |
|
291 |
# linker script if JVM prefers a different base location. It can also be |
|
292 |
# implemented with 'prelink -r'. But 'prelink' is not (yet) available on |
|
293 |
# our build platform (AS-2.1). |
|
294 |
LD_SCRIPT = libjvm.so.lds |
|
295 |
$(LD_SCRIPT): $(LIBJVM_MAPFILE) |
|
296 |
$(QUIETLY) { \ |
|
297 |
rm -rf $@; \ |
|
298 |
$(LINK_VM) -Wl,--verbose $(LFLAGS_VM) 2>&1 | \ |
|
299 |
sed -e '/^======/,/^======/!d' \ |
|
300 |
-e '/^======/d' \ |
|
301 |
-e 's/0\( + SIZEOF_HEADERS\)/$(JVM_BASE_ADDR)\1/' \ |
|
302 |
> $@; \ |
|
303 |
} |
|
304 |
LD_SCRIPT_FLAG = -Wl,-T,$(LD_SCRIPT) |
|
305 |
endif |
|
306 |
||
307 |
# With more recent Redhat releases (or the cutting edge version Fedora), if |
|
308 |
# SELinux is configured to be enabled, the runtime linker will fail to apply |
|
309 |
# the text relocation to libjvm.so considering that it is built as a non-PIC |
|
310 |
# DSO. To workaround that, we run chcon to libjvm.so after it is built. See |
|
311 |
# details in bug 6538311. |
|
312 |
$(LIBJVM): $(LIBJVM.o) $(LIBJVM_MAPFILE) $(LD_SCRIPT) |
|
313 |
$(QUIETLY) { \ |
|
314 |
echo Linking vm...; \ |
|
315 |
$(LINK_LIB.CC/PRE_HOOK) \ |
|
316 |
$(LINK_VM) $(LD_SCRIPT_FLAG) \ |
|
317 |
$(LFLAGS_VM) -o $@ $(LIBJVM.o) $(LIBS_VM); \ |
|
318 |
$(LINK_LIB.CC/POST_HOOK) \ |
|
319 |
rm -f $@.1; ln -s $@ $@.1; \ |
|
4493
9204129f065e
6843629: Make current hotspot build part of jdk5 control build
phh
parents:
4013
diff
changeset
|
320 |
[ -f $(LIBJVM_G) ] || { ln -s $@ $(LIBJVM_G); ln -s $@.1 $(LIBJVM_G).1; }; \ |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
321 |
if [ \"$(CROSS_COMPILE_ARCH)\" = \"\" ] ; then \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
322 |
if [ -x /usr/sbin/selinuxenabled ] ; then \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
323 |
/usr/sbin/selinuxenabled; \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
324 |
if [ $$? = 0 ] ; then \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
325 |
/usr/bin/chcon -t textrel_shlib_t $@; \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
326 |
if [ $$? != 0 ]; then \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
327 |
echo "ERROR: Cannot chcon $@"; \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
328 |
fi \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
329 |
fi \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
330 |
fi \ |
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5547
diff
changeset
|
331 |
fi \ |
1 | 332 |
} |
10559 | 333 |
ifeq ($(CROSS_COMPILE_ARCH),) |
334 |
ifneq ($(OBJCOPY),) |
|
335 |
$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBJVM_DEBUGINFO) |
|
336 |
$(QUIETLY) $(OBJCOPY) --add-gnu-debuglink=$(LIBJVM_DEBUGINFO) $@ |
|
337 |
ifeq ($(STRIP_POLICY),all_strip) |
|
338 |
$(QUIETLY) $(STRIP) $@ |
|
339 |
else |
|
340 |
ifeq ($(STRIP_POLICY),min_strip) |
|
341 |
$(QUIETLY) $(STRIP) -g $@ |
|
342 |
# implied else here is no stripping at all |
|
343 |
endif |
|
344 |
endif |
|
345 |
$(QUIETLY) [ -f $(LIBJVM_G_DEBUGINFO) ] || ln -s $(LIBJVM_DEBUGINFO) $(LIBJVM_G_DEBUGINFO) |
|
346 |
endif |
|
347 |
endif |
|
1 | 348 |
|
10559 | 349 |
DEST_SUBDIR = $(JDK_LIBDIR)/$(VM_SUBDIR) |
350 |
DEST_JVM = $(DEST_SUBDIR)/$(LIBJVM) |
|
351 |
DEST_JVM_DEBUGINFO = $(DEST_SUBDIR)/$(LIBJVM_DEBUGINFO) |
|
1 | 352 |
|
353 |
install_jvm: $(LIBJVM) |
|
354 |
@echo "Copying $(LIBJVM) to $(DEST_JVM)" |
|
10559 | 355 |
$(QUIETLY) test -f $(LIBJVM_DEBUGINFO) && \ |
356 |
cp -f $(LIBJVM_DEBUGINFO) $(DEST_JVM_DEBUGINFO) |
|
1 | 357 |
$(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done" |
358 |
||
359 |
#---------------------------------------------------------------------- |
|
360 |
# Other files |
|
361 |
||
362 |
# Gamma launcher |
|
363 |
include $(MAKEFILES_DIR)/launcher.make |
|
364 |
||
365 |
# Signal interposition library |
|
366 |
include $(MAKEFILES_DIR)/jsig.make |
|
367 |
||
368 |
# Serviceability agent |
|
369 |
include $(MAKEFILES_DIR)/saproc.make |
|
370 |
||
371 |
#---------------------------------------------------------------------- |
|
372 |
||
7397 | 373 |
build: $(LIBJVM) $(LAUNCHER) $(LIBJSIG) $(LIBJVM_DB) $(BUILDLIBSAPROC) |
1 | 374 |
|
375 |
install: install_jvm install_jsig install_saproc |
|
376 |
||
377 |
.PHONY: default build install install_jvm |