author | mikael |
Tue, 10 Mar 2015 09:42:23 -0700 | |
changeset 29463 | 4b16497408b9 |
parent 26691 | 40ea2c41f53b |
child 31620 | 53be635ad49c |
permissions | -rw-r--r-- |
1 | 1 |
# |
25639
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
13963
diff
changeset
|
2 |
# Copyright (c) 2003, 2014, 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:
3818
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3818
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:
3818
diff
changeset
|
21 |
# questions. |
25639
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
13963
diff
changeset
|
22 |
# |
1 | 23 |
# |
24 |
||
25 |
# Common rules/macros for the vm, adlc. |
|
26 |
||
27 |
# Tell make that .cpp is important |
|
28 |
.SUFFIXES: .cpp $(SUFFIXES) |
|
29 |
||
30 |
DEMANGLER = c++filt |
|
25639
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
13963
diff
changeset
|
31 |
DEMANGLE = $(DEMANGLER) < $@ > .$@ && $(MV) -f .$@ $@ |
1 | 32 |
|
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
33 |
# $(CC) is the c compiler (cc/gcc), $(CXX) is the c++ compiler (CC/g++). |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
34 |
CC_COMPILE = $(CC) $(CXXFLAGS) $(CFLAGS) |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
35 |
CXX_COMPILE = $(CXX) $(CXXFLAGS) $(CFLAGS) |
1 | 36 |
|
37 |
AS.S = $(AS) $(ASFLAGS) |
|
38 |
||
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
39 |
COMPILE.CC = $(CC_COMPILE) -c |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
40 |
GENASM.CC = $(CC_COMPILE) -S |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
41 |
LINK.CC = $(CC) $(LFLAGS) $(AOUT_FLAGS) $(PROF_AOUT_FLAGS) |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
42 |
LINK_LIB.CC = $(CC) $(LFLAGS) $(SHARED_FLAG) |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
43 |
PREPROCESS.CC = $(CC_COMPILE) -E |
1 | 44 |
|
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
45 |
COMPILE.CXX = $(CXX_COMPILE) -c |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
46 |
GENASM.CXX = $(CXX_COMPILE) -S |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
47 |
LINK.CXX = $(CXX) $(LFLAGS) $(AOUT_FLAGS) $(PROF_AOUT_FLAGS) |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
48 |
LINK_NOPROF.CXX = $(CXX) $(LFLAGS) $(AOUT_FLAGS) |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
49 |
LINK_LIB.CXX = $(CXX) $(LFLAGS) $(SHARED_FLAG) |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
50 |
PREPROCESS.CXX = $(CXX_COMPILE) -E |
1 | 51 |
|
8868
1bae515b806b
7029017: Additional architecture support for c2 compiler
roland
parents:
8114
diff
changeset
|
52 |
# cross compiling the jvm with c2 requires host compilers to build |
1bae515b806b
7029017: Additional architecture support for c2 compiler
roland
parents:
8114
diff
changeset
|
53 |
# adlc tool |
1bae515b806b
7029017: Additional architecture support for c2 compiler
roland
parents:
8114
diff
changeset
|
54 |
|
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
55 |
HOST.CXX_COMPILE = $(HOSTCXX) $(CXXFLAGS) $(CFLAGS) |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
56 |
HOST.COMPILE.CXX = $(HOST.CXX_COMPILE) -c |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
57 |
HOST.LINK_NOPROF.CXX = $(HOSTCXX) $(LFLAGS) $(AOUT_FLAGS) |
8868
1bae515b806b
7029017: Additional architecture support for c2 compiler
roland
parents:
8114
diff
changeset
|
58 |
|
1bae515b806b
7029017: Additional architecture support for c2 compiler
roland
parents:
8114
diff
changeset
|
59 |
|
1 | 60 |
# Effect of REMOVE_TARGET is to delete out-of-date files during "gnumake -k". |
61 |
REMOVE_TARGET = rm -f $@ |
|
62 |
||
63 |
# Note use of ALT_BOOTDIR to explicitly specify location of java and |
|
64 |
# javac; this is the same environment variable used in the J2SE build |
|
65 |
# process for overriding the default spec, which is BOOTDIR. |
|
66 |
# Note also that we fall back to using JAVA_HOME if neither of these is |
|
67 |
# specified. |
|
68 |
||
69 |
ifdef ALT_BOOTDIR |
|
70 |
||
71 |
RUN.JAVA = $(ALT_BOOTDIR)/bin/java |
|
72 |
RUN.JAVAP = $(ALT_BOOTDIR)/bin/javap |
|
73 |
RUN.JAVAH = $(ALT_BOOTDIR)/bin/javah |
|
74 |
RUN.JAR = $(ALT_BOOTDIR)/bin/jar |
|
75 |
COMPILE.JAVAC = $(ALT_BOOTDIR)/bin/javac |
|
76 |
COMPILE.RMIC = $(ALT_BOOTDIR)/bin/rmic |
|
77 |
BOOT_JAVA_HOME = $(ALT_BOOTDIR) |
|
78 |
||
79 |
else |
|
80 |
||
81 |
ifdef BOOTDIR |
|
82 |
||
83 |
RUN.JAVA = $(BOOTDIR)/bin/java |
|
84 |
RUN.JAVAP = $(BOOTDIR)/bin/javap |
|
85 |
RUN.JAVAH = $(BOOTDIR)/bin/javah |
|
86 |
RUN.JAR = $(BOOTDIR)/bin/jar |
|
87 |
COMPILE.JAVAC = $(BOOTDIR)/bin/javac |
|
88 |
COMPILE.RMIC = $(BOOTDIR)/bin/rmic |
|
89 |
BOOT_JAVA_HOME = $(BOOTDIR) |
|
90 |
||
91 |
else |
|
92 |
||
93 |
ifdef JAVA_HOME |
|
94 |
||
95 |
RUN.JAVA = $(JAVA_HOME)/bin/java |
|
96 |
RUN.JAVAP = $(JAVA_HOME)/bin/javap |
|
97 |
RUN.JAVAH = $(JAVA_HOME)/bin/javah |
|
98 |
RUN.JAR = $(JAVA_HOME)/bin/jar |
|
99 |
COMPILE.JAVAC = $(JAVA_HOME)/bin/javac |
|
100 |
COMPILE.RMIC = $(JAVA_HOME)/bin/rmic |
|
101 |
BOOT_JAVA_HOME = $(JAVA_HOME) |
|
102 |
||
103 |
else |
|
104 |
||
105 |
# take from the PATH, if ALT_BOOTDIR, BOOTDIR and JAVA_HOME are not defined |
|
106 |
# note that this is to support hotspot build without SA. To build |
|
107 |
# SA along with hotspot, you need to define ALT_BOOTDIR, BOOTDIR or JAVA_HOME |
|
108 |
||
109 |
RUN.JAVA = java |
|
110 |
RUN.JAVAP = javap |
|
111 |
RUN.JAVAH = javah |
|
112 |
RUN.JAR = jar |
|
113 |
COMPILE.JAVAC = javac |
|
114 |
COMPILE.RMIC = rmic |
|
115 |
||
116 |
endif |
|
117 |
endif |
|
118 |
endif |
|
119 |
||
3818
75004bf9026c
6873059: Explicitly use -source 6 -target 6 when compiling with the boot jdk
andrew
parents:
781
diff
changeset
|
120 |
COMPILE.JAVAC += $(BOOTSTRAP_JAVAC_FLAGS) |
75004bf9026c
6873059: Explicitly use -source 6 -target 6 when compiling with the boot jdk
andrew
parents:
781
diff
changeset
|
121 |
|
1 | 122 |
SUM = /usr/bin/sum |
123 |
||
124 |
# 'gmake MAKE_VERBOSE=y' gives all the gory details. |
|
125 |
QUIETLY$(MAKE_VERBOSE) = @ |
|
126 |
RUN.JAR$(MAKE_VERBOSE) += >/dev/null |
|
127 |
||
3818
75004bf9026c
6873059: Explicitly use -source 6 -target 6 when compiling with the boot jdk
andrew
parents:
781
diff
changeset
|
128 |
# Settings for javac |
75004bf9026c
6873059: Explicitly use -source 6 -target 6 when compiling with the boot jdk
andrew
parents:
781
diff
changeset
|
129 |
JAVAC_FLAGS = -g -encoding ascii |
29463
4b16497408b9
8074726: Update source and target version used when compiling hotspot class files
mikael
parents:
26691
diff
changeset
|
130 |
|
4b16497408b9
8074726: Update source and target version used when compiling hotspot class files
mikael
parents:
26691
diff
changeset
|
131 |
# Prefer BOOT_JDK_SOURCETARGET if it's set (typically by the top build system) |
4b16497408b9
8074726: Update source and target version used when compiling hotspot class files
mikael
parents:
26691
diff
changeset
|
132 |
# Fall back to the values here if it's not set (hotspot only builds) |
4b16497408b9
8074726: Update source and target version used when compiling hotspot class files
mikael
parents:
26691
diff
changeset
|
133 |
ifeq ($(BOOT_JDK_SOURCETARGET),) |
4b16497408b9
8074726: Update source and target version used when compiling hotspot class files
mikael
parents:
26691
diff
changeset
|
134 |
BOOTSTRAP_SOURCETARGET := -source 8 -target 8 |
4b16497408b9
8074726: Update source and target version used when compiling hotspot class files
mikael
parents:
26691
diff
changeset
|
135 |
else |
4b16497408b9
8074726: Update source and target version used when compiling hotspot class files
mikael
parents:
26691
diff
changeset
|
136 |
BOOTSTRAP_SOURCETARGET := $(BOOT_JDK_SOURCETARGET) |
4b16497408b9
8074726: Update source and target version used when compiling hotspot class files
mikael
parents:
26691
diff
changeset
|
137 |
endif |
4b16497408b9
8074726: Update source and target version used when compiling hotspot class files
mikael
parents:
26691
diff
changeset
|
138 |
|
4b16497408b9
8074726: Update source and target version used when compiling hotspot class files
mikael
parents:
26691
diff
changeset
|
139 |
BOOTSTRAP_JAVAC_FLAGS = $(JAVAC_FLAGS) $(BOOTSTRAP_SOURCETARGET) |
3818
75004bf9026c
6873059: Explicitly use -source 6 -target 6 when compiling with the boot jdk
andrew
parents:
781
diff
changeset
|
140 |
|
1 | 141 |
# With parallel makes, print a message at the end of compilation. |
142 |
ifeq ($(findstring j,$(MFLAGS)),j) |
|
143 |
COMPILE_DONE = && { echo Done with $<; } |
|
144 |
endif |
|
145 |
||
774
e71318ea23e8
6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
744
diff
changeset
|
146 |
# Include $(NONPIC_OBJ_FILES) definition |
e71318ea23e8
6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
744
diff
changeset
|
147 |
ifndef LP64 |
e71318ea23e8
6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
744
diff
changeset
|
148 |
include $(GAMMADIR)/make/pic.make |
e71318ea23e8
6717128: Using relative path for ALT_OUTPUTDIR does not work properly
xlu
parents:
744
diff
changeset
|
149 |
endif |
744 | 150 |
|
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
151 |
include $(GAMMADIR)/make/altsrc.make |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
7397
diff
changeset
|
152 |
|
744 | 153 |
# The non-PIC object files are only generated for 32 bit platforms. |
154 |
ifdef LP64 |
|
1 | 155 |
%.o: %.cpp |
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
25639
diff
changeset
|
156 |
@echo $(LOG_INFO) Compiling $< |
1 | 157 |
$(QUIETLY) $(REMOVE_TARGET) |
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
158 |
$(QUIETLY) $(COMPILE.CXX) $(DEPFLAGS) -o $@ $< $(COMPILE_DONE) |
744 | 159 |
else |
160 |
%.o: %.cpp |
|
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
25639
diff
changeset
|
161 |
@echo $(LOG_INFO) Compiling $< |
744 | 162 |
$(QUIETLY) $(REMOVE_TARGET) |
163 |
$(QUIETLY) $(if $(findstring $@, $(NONPIC_OBJ_FILES)), \ |
|
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
164 |
$(subst $(VM_PICFLAG), ,$(COMPILE.CXX)) $(DEPFLAGS) -o $@ $< $(COMPILE_DONE), \ |
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
165 |
$(COMPILE.CXX) $(DEPFLAGS) -o $@ $< $(COMPILE_DONE)) |
744 | 166 |
endif |
1 | 167 |
|
168 |
%.o: %.s |
|
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
25639
diff
changeset
|
169 |
@echo $(LOG_INFO) Assembling $< |
1 | 170 |
$(QUIETLY) $(REMOVE_TARGET) |
7397 | 171 |
$(QUIETLY) $(AS.S) $(DEPFLAGS) -o $@ $< $(COMPILE_DONE) |
1 | 172 |
|
173 |
%.s: %.cpp |
|
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
25639
diff
changeset
|
174 |
@echo $(LOG_INFO) Generating assembly for $< |
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
175 |
$(QUIETLY) $(GENASM.CXX) -o $@ $< |
1 | 176 |
$(QUIETLY) $(DEMANGLE) $(COMPILE_DONE) |
177 |
||
178 |
# Intermediate files (for debugging macros) |
|
179 |
%.i: %.cpp |
|
26691
40ea2c41f53b
8056999: Make hotspot builds less verbose on default log level
ihse
parents:
25639
diff
changeset
|
180 |
@echo $(LOG_INFO) Preprocessing $< to $@ |
11721
dcd1f62c9caf
7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents:
8868
diff
changeset
|
181 |
$(QUIETLY) $(PREPROCESS.CXX) $< > $@ $(COMPILE_DONE) |
1 | 182 |
|
183 |
# Override gnumake built-in rules which do sccs get operations badly. |
|
184 |
# (They put the checked out code in the current directory, not in the |
|
185 |
# directory of the original file.) Since this is a symptom of a teamware |
|
186 |
# failure, and since not all problems can be detected by gnumake due |
|
187 |
# to incomplete dependency checking... just complain and stop. |
|
188 |
%:: s.% |
|
189 |
@echo "=========================================================" |
|
190 |
@echo File $@ |
|
191 |
@echo is out of date with respect to its SCCS file. |
|
192 |
@echo This file may be from an unresolved Teamware conflict. |
|
193 |
@echo This is also a symptom of a Teamware bringover/putback failure |
|
194 |
@echo in which SCCS files are updated but not checked out. |
|
195 |
@echo Check for other out of date files in your workspace. |
|
196 |
@echo "=========================================================" |
|
197 |
@exit 666 |
|
198 |
||
199 |
%:: SCCS/s.% |
|
200 |
@echo "=========================================================" |
|
201 |
@echo File $@ |
|
202 |
@echo is out of date with respect to its SCCS file. |
|
203 |
@echo This file may be from an unresolved Teamware conflict. |
|
204 |
@echo This is also a symptom of a Teamware bringover/putback failure |
|
205 |
@echo in which SCCS files are updated but not checked out. |
|
206 |
@echo Check for other out of date files in your workspace. |
|
207 |
@echo "=========================================================" |
|
208 |
@exit 666 |
|
209 |
||
210 |
.PHONY: default |