author | lancea |
Wed, 20 Jun 2018 16:08:14 -0400 | |
branch | JDK-8188051-branch |
changeset 56798 | 3b438b3fef46 |
parent 50562 | 3903ab54107e |
child 51678 | 2fdfe34f7262 |
permissions | -rw-r--r-- |
0 | 1 |
# |
49568 | 2 |
# Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved. |
0 | 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 |
|
5499 | 7 |
# published by the Free Software Foundation. Oracle designates this |
0 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5499 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
0 | 10 |
# |
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
5499 | 21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
0 | 24 |
# |
25 |
||
29662 | 26 |
################################################################################ |
27 |
# This is the bootstrapping part of the build. This file is included from the |
|
28 |
# top level Makefile, and is responsible for launching the Main.gmk file with |
|
29 |
# the proper make and the proper make arguments. |
|
30 |
################################################################################ |
|
31 |
||
21759 | 32 |
# This must be the first rule |
33 |
default: |
|
29662 | 34 |
.PHONY: default |
17
bb9f330cd95a
6649672: Adjustments to OUTPUTDIR default and mkdirs to avoid empty directory clutter
ohair
parents:
16
diff
changeset
|
35 |
|
21759 | 36 |
# Inclusion of this pseudo-target will cause make to execute this file |
29662 | 37 |
# serially, regardless of -j. |
21759 | 38 |
.NOTPARALLEL: |
9618 | 39 |
|
29788 | 40 |
ifeq ($(HAS_SPEC),) |
29662 | 41 |
############################################################################## |
29788 | 42 |
# This is the default mode. We have not been recursively called with a SPEC. |
29662 | 43 |
############################################################################## |
44 |
||
29788 | 45 |
# Include our helper functions. |
46 |
include $(topdir)/make/InitSupport.gmk |
|
8441 | 47 |
|
29788 | 48 |
# Here are "global" targets, i.e. targets that can be executed without having |
49 |
# a configuration. This will define ALL_GLOBAL_TARGETS. |
|
50 |
include $(topdir)/make/Help.gmk |
|
29662 | 51 |
|
29788 | 52 |
# Targets provided by Init.gmk. |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
53 |
ALL_INIT_TARGETS := print-modules print-targets print-configuration \ |
44027 | 54 |
print-tests reconfigure pre-compare-build post-compare-build |
25854 | 55 |
|
29662 | 56 |
# CALLED_TARGETS is the list of targets that the user provided, |
57 |
# or "default" if unspecified. |
|
58 |
CALLED_TARGETS := $(if $(MAKECMDGOALS), $(MAKECMDGOALS), default) |
|
29788 | 59 |
|
60 |
# Extract non-global targets that require a spec file. |
|
61 |
CALLED_SPEC_TARGETS := $(filter-out $(ALL_GLOBAL_TARGETS), $(CALLED_TARGETS)) |
|
62 |
||
63 |
# If we have only global targets, or if we are called with -qp (assuming an |
|
64 |
# external part, e.g. bash completion, is trying to understand our targets), |
|
65 |
# we will skip SPEC location and the sanity checks. |
|
66 |
ifeq ($(CALLED_SPEC_TARGETS), ) |
|
67 |
ONLY_GLOBAL_TARGETS := true |
|
68 |
endif |
|
43653 | 69 |
ifeq ($(findstring p, $(MAKEFLAGS))$(findstring q, $(MAKEFLAGS)), pq) |
29788 | 70 |
ONLY_GLOBAL_TARGETS := true |
71 |
endif |
|
72 |
||
73 |
ifeq ($(ONLY_GLOBAL_TARGETS), true) |
|
74 |
############################################################################ |
|
75 |
# We have only global targets, or are called with -pq. |
|
76 |
############################################################################ |
|
77 |
||
78 |
ifeq ($(wildcard $(SPEC)), ) |
|
79 |
# If we have no SPEC provided, we will just make a "best effort" target list. |
|
80 |
# First try to grab any available pre-existing main-targets.gmk. |
|
81 |
main_targets_file := $(firstword $(wildcard $(build_dir)/*/make-support/main-targets.gmk)) |
|
82 |
ifneq ($(main_targets_file), ) |
|
83 |
# Extract the SPEC that corresponds to this main-targets.gmk file. |
|
84 |
SPEC := $(patsubst %/make-support/main-targets.gmk, %/spec.gmk, $(main_targets_file)) |
|
85 |
else |
|
86 |
# None found, pick an arbitrary SPEC for which to generate a file |
|
87 |
SPEC := $(firstword $(all_spec_files)) |
|
88 |
endif |
|
89 |
endif |
|
90 |
||
91 |
ifneq ($(wildcard $(SPEC)), ) |
|
92 |
$(eval $(call DefineMainTargets, LAZY, $(SPEC))) |
|
93 |
else |
|
94 |
# If we have no configurations we can not provide any main targets. |
|
95 |
ALL_MAIN_TARGETS := |
|
96 |
endif |
|
97 |
||
98 |
ALL_TARGETS := $(sort $(ALL_GLOBAL_TARGETS) $(ALL_MAIN_TARGETS) $(ALL_INIT_TARGETS)) |
|
99 |
||
100 |
# Just list all our targets. |
|
101 |
$(ALL_TARGETS): |
|
102 |
||
103 |
.PHONY: $(ALL_TARGETS) |
|
104 |
||
105 |
else |
|
106 |
############################################################################ |
|
107 |
# This is the normal case, we have been called from the command line by the |
|
108 |
# user and we need to call ourself back with a proper SPEC. |
|
109 |
# We have at least one non-global target, so we need to find a spec file. |
|
110 |
############################################################################ |
|
111 |
||
112 |
# Basic checks on environment and command line. |
|
113 |
$(eval $(call CheckControlVariables)) |
|
114 |
$(eval $(call CheckDeprecatedEnvironment)) |
|
115 |
$(eval $(call CheckInvalidMakeFlags)) |
|
116 |
||
117 |
# Check that CONF_CHECK is valid. |
|
118 |
$(eval $(call ParseConfCheckOption)) |
|
119 |
||
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
120 |
# Check that the LOG given is valid, and set LOG_LEVEL, LOG_NOFILE, MAKE_LOG_VARS and MAKE_LOG_FLAGS. |
29788 | 121 |
$(eval $(call ParseLogLevel)) |
122 |
||
123 |
# After this SPECS contain 1..N spec files (otherwise ParseConfAndSpec fails). |
|
29662 | 124 |
$(eval $(call ParseConfAndSpec)) |
25854 | 125 |
|
29788 | 126 |
# Extract main targets from Main.gmk using the spec(s) provided. In theory, |
127 |
# with multiple specs, we should find the intersection of targets provided |
|
128 |
# by all specs, but we approximate this by an arbitrary spec from the list. |
|
129 |
# This will setup ALL_MAIN_TARGETS. |
|
130 |
$(eval $(call DefineMainTargets, FORCE, $(firstword $(SPECS)))) |
|
131 |
||
132 |
# Separate called targets depending on type. |
|
29662 | 133 |
INIT_TARGETS := $(filter $(ALL_INIT_TARGETS), $(CALLED_SPEC_TARGETS)) |
29788 | 134 |
MAIN_TARGETS := $(filter $(ALL_MAIN_TARGETS), $(CALLED_SPEC_TARGETS)) |
135 |
SEQUENTIAL_TARGETS := $(filter dist-clean clean%, $(MAIN_TARGETS)) |
|
136 |
PARALLEL_TARGETS := $(filter-out $(SEQUENTIAL_TARGETS), $(MAIN_TARGETS)) |
|
874
638ddad10e12
6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents:
668
diff
changeset
|
137 |
|
29662 | 138 |
# The spec files depend on the autoconf source code. This check makes sure |
139 |
# the configuration is up to date after changes to configure. |
|
47313
eb28be8f935d
8188768: Fix interaction between make and autoconf after consolidation
ihse
parents:
47253
diff
changeset
|
140 |
$(SPECS): $(wildcard $(topdir)/make/autoconf/*) \ |
eb28be8f935d
8188768: Fix interaction between make and autoconf after consolidation
ihse
parents:
47253
diff
changeset
|
141 |
$(if $(CUSTOM_CONFIG_DIR), $(wildcard $(CUSTOM_CONFIG_DIR)/*)) |
29662 | 142 |
ifeq ($(CONF_CHECK), fail) |
47313
eb28be8f935d
8188768: Fix interaction between make and autoconf after consolidation
ihse
parents:
47253
diff
changeset
|
143 |
@echo Error: The configuration is not up to date for \ |
eb28be8f935d
8188768: Fix interaction between make and autoconf after consolidation
ihse
parents:
47253
diff
changeset
|
144 |
"'$(lastword $(subst /, , $(dir $@)))'." |
29662 | 145 |
$(call PrintConfCheckFailed) |
146 |
@exit 2 |
|
147 |
else ifeq ($(CONF_CHECK), auto) |
|
47313
eb28be8f935d
8188768: Fix interaction between make and autoconf after consolidation
ihse
parents:
47253
diff
changeset
|
148 |
@echo Note: The configuration is not up to date for \ |
eb28be8f935d
8188768: Fix interaction between make and autoconf after consolidation
ihse
parents:
47253
diff
changeset
|
149 |
"'$(lastword $(subst /, , $(dir $@)))'." |
29662 | 150 |
@( cd $(topdir) && \ |
29788 | 151 |
$(MAKE) $(MFLAGS) $(MAKE_LOG_FLAGS) -r -R -f $(topdir)/make/Init.gmk \ |
152 |
SPEC=$@ HAS_SPEC=true ACTUAL_TOPDIR=$(topdir) \ |
|
29662 | 153 |
reconfigure ) |
154 |
else ifeq ($(CONF_CHECK), ignore) |
|
155 |
# Do nothing |
|
26398
ca1f84f97e20
8057537: Serialize reconfigure and fix make clean-foo foo
erikj
parents:
26128
diff
changeset
|
156 |
endif |
25854 | 157 |
|
36050
f6590b6e5e97
8150203: Incremental update from build-infra project
ihse
parents:
35744
diff
changeset
|
158 |
# Do not let make delete spec files even if aborted while doing a reconfigure |
f6590b6e5e97
8150203: Incremental update from build-infra project
ihse
parents:
35744
diff
changeset
|
159 |
.PRECIOUS: $(SPECS) |
f6590b6e5e97
8150203: Incremental update from build-infra project
ihse
parents:
35744
diff
changeset
|
160 |
|
42300
218374d35efd
8039103: "explicitly" is misspelled as "explicitely" in configure scripts
ihse
parents:
41458
diff
changeset
|
161 |
# Unless reconfigure is explicitly called, let all main targets depend on |
29788 | 162 |
# the spec files to be up to date. |
163 |
ifeq ($(findstring reconfigure, $(INIT_TARGETS)), ) |
|
164 |
$(MAIN_TARGETS): $(SPECS) |
|
29662 | 165 |
endif |
874
638ddad10e12
6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents:
668
diff
changeset
|
166 |
|
29788 | 167 |
make-info: |
168 |
ifneq ($(findstring $(LOG_LEVEL),info debug trace),) |
|
169 |
$(info Running make as '$(strip $(MAKE) $(MFLAGS) \ |
|
170 |
$(COMMAND_LINE_VARIABLES) $(MAKECMDGOALS))') |
|
171 |
endif |
|
172 |
||
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
173 |
MAKE_INIT_WITH_SPEC_ARGUMENTS := ACTUAL_TOPDIR=$(topdir) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
174 |
USER_MAKE_VARS="$(USER_MAKE_VARS)" MAKE_LOG_FLAGS=$(MAKE_LOG_FLAGS) \ |
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
175 |
$(MAKE_LOG_VARS) \ |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
176 |
INIT_TARGETS="$(INIT_TARGETS)" \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
177 |
SEQUENTIAL_TARGETS="$(SEQUENTIAL_TARGETS)" \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
178 |
PARALLEL_TARGETS="$(PARALLEL_TARGETS)" |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
179 |
|
29788 | 180 |
# Now the init and main targets will be called, once for each SPEC. The |
181 |
# recipe will be run once for every target specified, but we only want to |
|
182 |
# execute the recipe a single time, hence the TARGET_DONE with a dummy |
|
183 |
# command if true. |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
184 |
# The COMPARE_BUILD part implements special support for makefile development. |
29788 | 185 |
$(ALL_INIT_TARGETS) $(ALL_MAIN_TARGETS): make-info |
29662 | 186 |
@$(if $(TARGET_DONE), \ |
187 |
true \ |
|
188 |
, \ |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
189 |
( cd $(topdir) && \ |
29662 | 190 |
$(foreach spec, $(SPECS), \ |
29788 | 191 |
$(MAKE) $(MFLAGS) $(MAKE_LOG_FLAGS) -r -R -j 1 -f $(topdir)/make/Init.gmk \ |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
192 |
SPEC=$(spec) HAS_SPEC=true $(MAKE_INIT_WITH_SPEC_ARGUMENTS) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
193 |
main && \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
194 |
$(if $(and $(COMPARE_BUILD), $(PARALLEL_TARGETS)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
195 |
$(MAKE) $(MFLAGS) $(MAKE_LOG_FLAGS) -r -R -f $(topdir)/make/Init.gmk \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
196 |
SPEC=$(spec) HAS_SPEC=true ACTUAL_TOPDIR=$(topdir) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
197 |
COMPARE_BUILD="$(COMPARE_BUILD)" pre-compare-build && \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
198 |
$(MAKE) $(MFLAGS) $(MAKE_LOG_FLAGS) -r -R -j 1 -f $(topdir)/make/Init.gmk \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
199 |
SPEC=$(spec) HAS_SPEC=true $(MAKE_INIT_WITH_SPEC_ARGUMENTS) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
200 |
COMPARE_BUILD="$(COMPARE_BUILD)" main && \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
201 |
$(MAKE) $(MFLAGS) $(MAKE_LOG_FLAGS) -r -R -f $(topdir)/make/Init.gmk \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
202 |
SPEC=$(spec) HAS_SPEC=true ACTUAL_TOPDIR=$(topdir) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
203 |
COMPARE_BUILD="$(COMPARE_BUILD)" post-compare-build && \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
204 |
) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
205 |
) true ) \ |
29662 | 206 |
$(eval TARGET_DONE=true) \ |
207 |
) |
|
208 |
||
209 |
.PHONY: $(ALL_MAIN_TARGETS) $(ALL_INIT_TARGETS) |
|
0 | 210 |
|
29788 | 211 |
endif # $(ONLY_GLOBAL_TARGETS)!=true |
29662 | 212 |
|
213 |
else # HAS_SPEC=true |
|
214 |
||
215 |
############################################################################## |
|
216 |
# Now we have a spec. This part provides the "main" target that acts as a |
|
217 |
# trampoline to call the Main.gmk with the value of $(MAKE) found in the spec |
|
218 |
# file. |
|
219 |
############################################################################## |
|
220 |
||
29788 | 221 |
include $(SPEC) |
222 |
||
223 |
# Our helper functions. |
|
224 |
include $(TOPDIR)/make/InitSupport.gmk |
|
225 |
||
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
226 |
# Parse COMPARE_BUILD (for makefile development) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
227 |
$(eval $(call ParseCompareBuild)) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
228 |
|
49568 | 229 |
# If no LOG= was given on command line, but we have a non-standard default |
230 |
# value, use that instead and re-parse log level. |
|
231 |
ifeq ($(LOG), ) |
|
232 |
ifneq ($(DEFAULT_LOG), ) |
|
233 |
override LOG := $(DEFAULT_LOG) |
|
234 |
$(eval $(call ParseLogLevel)) |
|
235 |
endif |
|
236 |
endif |
|
237 |
||
29662 | 238 |
ifeq ($(LOG_NOFILE), true) |
35008 | 239 |
# Disable build log if LOG=[level,]nofile was given |
240 |
override BUILD_LOG_PIPE := |
|
29662 | 241 |
endif |
242 |
||
243 |
ifeq ($(OUTPUT_SYNC_SUPPORTED), true) |
|
244 |
OUTPUT_SYNC_FLAG := -O$(OUTPUT_SYNC) |
|
245 |
endif |
|
246 |
||
29788 | 247 |
############################################################################## |
248 |
# Init targets |
|
249 |
############################################################################## |
|
250 |
||
251 |
print-modules: |
|
252 |
( cd $(TOPDIR) && \ |
|
253 |
$(MAKE) $(MAKE_ARGS) -j 1 -f make/Main.gmk $(USER_MAKE_VARS) \ |
|
254 |
NO_RECIPES=true print-modules ) |
|
255 |
||
256 |
print-targets: |
|
257 |
( cd $(TOPDIR) && \ |
|
258 |
$(MAKE) $(MAKE_ARGS) -j 1 -f make/Main.gmk $(USER_MAKE_VARS) \ |
|
259 |
NO_RECIPES=true print-targets ) |
|
28902
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28286
diff
changeset
|
260 |
|
44027 | 261 |
print-tests: |
262 |
( cd $(TOPDIR) && \ |
|
263 |
$(MAKE) $(MAKE_ARGS) -j 1 -f make/Main.gmk $(USER_MAKE_VARS) \ |
|
264 |
NO_RECIPES=true print-tests ) |
|
265 |
||
32461
e1cfbafc4e9c
8135180: Print configure arguments using make print-configuration
ihse
parents:
32344
diff
changeset
|
266 |
print-configuration: |
e1cfbafc4e9c
8135180: Print configure arguments using make print-configuration
ihse
parents:
32344
diff
changeset
|
267 |
$(ECHO) $(CONFIGURE_COMMAND_LINE) |
e1cfbafc4e9c
8135180: Print configure arguments using make print-configuration
ihse
parents:
32344
diff
changeset
|
268 |
|
29662 | 269 |
reconfigure: |
270 |
ifneq ($(CONFIGURE_COMMAND_LINE), ) |
|
271 |
$(ECHO) "Re-running configure using arguments '$(CONFIGURE_COMMAND_LINE)'" |
|
272 |
else |
|
273 |
$(ECHO) "Re-running configure using default settings" |
|
274 |
endif |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
275 |
( cd $(OUTPUTDIR) && PATH="$(ORIGINAL_PATH)" \ |
47346 | 276 |
CUSTOM_ROOT="$(CUSTOM_ROOT)" \ |
47313
eb28be8f935d
8188768: Fix interaction between make and autoconf after consolidation
ihse
parents:
47253
diff
changeset
|
277 |
CUSTOM_CONFIG_DIR="$(CUSTOM_CONFIG_DIR)" \ |
47346 | 278 |
$(BASH) $(TOPDIR)/configure $(CONFIGURE_COMMAND_LINE) ) |
29662 | 279 |
|
29788 | 280 |
############################################################################## |
281 |
# The main target, for delegating into Main.gmk |
|
282 |
############################################################################## |
|
29662 | 283 |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
284 |
MAIN_TARGETS := $(SEQUENTIAL_TARGETS) $(PARALLEL_TARGETS) $(COMPARE_BUILD_MAKE) |
37649
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
36050
diff
changeset
|
285 |
# If building the default target, add what they are to the description. |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
36050
diff
changeset
|
286 |
DESCRIPTION_TARGETS := $(strip $(MAIN_TARGETS)) |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
36050
diff
changeset
|
287 |
ifeq ($(DESCRIPTION_TARGETS), default) |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
36050
diff
changeset
|
288 |
DESCRIPTION_TARGETS += ($(DEFAULT_MAKE_TARGET)) |
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
36050
diff
changeset
|
289 |
endif |
29788 | 290 |
TARGET_DESCRIPTION := target$(if $(word 2, $(MAIN_TARGETS)),s) \ |
37649
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
36050
diff
changeset
|
291 |
'$(strip $(DESCRIPTION_TARGETS))' in configuration '$(CONF_NAME)' |
29662 | 292 |
|
293 |
# MAKEOVERRIDES is automatically set and propagated by Make to sub-Make calls. |
|
294 |
# We need to clear it of the init-specific variables. The user-specified |
|
42300
218374d35efd
8039103: "explicitly" is misspelled as "explicitely" in configure scripts
ihse
parents:
41458
diff
changeset
|
295 |
# variables are explicitly propagated using $(USER_MAKE_VARS). |
29662 | 296 |
main: MAKEOVERRIDES := |
0 | 297 |
|
29788 | 298 |
main: $(INIT_TARGETS) |
299 |
ifneq ($(SEQUENTIAL_TARGETS)$(PARALLEL_TARGETS), ) |
|
300 |
$(call RotateLogFiles) |
|
35008 | 301 |
$(PRINTF) "Building $(TARGET_DESCRIPTION)\n" $(BUILD_LOG_PIPE) |
29788 | 302 |
ifneq ($(SEQUENTIAL_TARGETS), ) |
303 |
# Don't touch build output dir since we might be cleaning. That |
|
35008 | 304 |
# means no log pipe. |
29788 | 305 |
( cd $(TOPDIR) && \ |
306 |
$(MAKE) $(MAKE_ARGS) -j 1 -f make/Main.gmk $(USER_MAKE_VARS) \ |
|
307 |
$(SEQUENTIAL_TARGETS) ) |
|
308 |
endif |
|
309 |
ifneq ($(PARALLEL_TARGETS), ) |
|
50562
3903ab54107e
8204664: PrepareFailureLogs should be done after sequential make targets
ihse
parents:
49841
diff
changeset
|
310 |
$(call PrepareFailureLogs) |
29788 | 311 |
$(call StartGlobalTimer) |
312 |
$(call PrepareSmartJavac) |
|
49841
b39ba7ae45cc
8201788: Number of make jobs wrong for bootcycle-images target
sgehwolf
parents:
49568
diff
changeset
|
313 |
# JOBS will only be empty for a bootcycle-images recursive call |
b39ba7ae45cc
8201788: Number of make jobs wrong for bootcycle-images target
sgehwolf
parents:
49568
diff
changeset
|
314 |
# or if specified via a make argument directly. In those cases |
b39ba7ae45cc
8201788: Number of make jobs wrong for bootcycle-images target
sgehwolf
parents:
49568
diff
changeset
|
315 |
# treat it as NOT using jobs at all. |
29788 | 316 |
( cd $(TOPDIR) && \ |
35008 | 317 |
$(NICE) $(MAKE) $(MAKE_ARGS) $(OUTPUT_SYNC_FLAG) \ |
49841
b39ba7ae45cc
8201788: Number of make jobs wrong for bootcycle-images target
sgehwolf
parents:
49568
diff
changeset
|
318 |
$(if $(JOBS), -j $(JOBS)) \ |
b39ba7ae45cc
8201788: Number of make jobs wrong for bootcycle-images target
sgehwolf
parents:
49568
diff
changeset
|
319 |
-f make/Main.gmk $(USER_MAKE_VARS) \ |
35008 | 320 |
$(PARALLEL_TARGETS) $(COMPARE_BUILD_MAKE) $(BUILD_LOG_PIPE) || \ |
321 |
( exitcode=$$? && \ |
|
322 |
$(PRINTF) "\nERROR: Build failed for $(TARGET_DESCRIPTION) (exit code $$exitcode) \n" \ |
|
323 |
$(BUILD_LOG_PIPE) && \ |
|
32344
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
30415
diff
changeset
|
324 |
cd $(TOPDIR) && $(MAKE) $(MAKE_ARGS) -j 1 -f make/Init.gmk \ |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
30415
diff
changeset
|
325 |
HAS_SPEC=true on-failure ; \ |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
30415
diff
changeset
|
326 |
exit $$exitcode ) ) |
29788 | 327 |
$(call CleanupSmartJavac) |
328 |
$(call StopGlobalTimer) |
|
329 |
$(call ReportBuildTimes) |
|
330 |
endif |
|
44027 | 331 |
if test -f $(MAKESUPPORT_OUTPUTDIR)/exit-with-error ; then \ |
332 |
exit 1 ; \ |
|
333 |
fi |
|
35008 | 334 |
$(PRINTF) "Finished building $(TARGET_DESCRIPTION)\n" $(BUILD_LOG_PIPE) |
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
335 |
$(call ReportProfileTimes) |
29662 | 336 |
endif |
337 |
||
32344
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
30415
diff
changeset
|
338 |
on-failure: |
40621
c55ef7ed9aa0
8165314: Javac server process left running if build fails on Windows
erikj
parents:
37649
diff
changeset
|
339 |
$(call CleanupSmartJavac) |
c55ef7ed9aa0
8165314: Javac server process left running if build fails on Windows
erikj
parents:
37649
diff
changeset
|
340 |
$(call StopGlobalTimer) |
c55ef7ed9aa0
8165314: Javac server process left running if build fails on Windows
erikj
parents:
37649
diff
changeset
|
341 |
$(call ReportBuildTimes) |
33572 | 342 |
$(call PrintFailureReports) |
343 |
$(call PrintBuildLogFailures) |
|
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
344 |
$(call ReportProfileTimes) |
47928
fb62d4519338
8191715: Update documentation pointing to "common" directory
ihse
parents:
47456
diff
changeset
|
345 |
$(PRINTF) "Hint: See doc/building.html#troubleshooting for assistance.\n\n" |
33572 | 346 |
ifneq ($(COMPARE_BUILD), ) |
347 |
$(call CleanupCompareBuild) |
|
32344
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
30415
diff
changeset
|
348 |
endif |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
30415
diff
changeset
|
349 |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
350 |
# Support targets for COMPARE_BUILD, used for makefile development |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
351 |
pre-compare-build: |
35370
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
352 |
$(call WaitForSmartJavacFinish) |
33572 | 353 |
$(call PrepareCompareBuild) |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
354 |
|
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
355 |
post-compare-build: |
35744
4f5e0998b6e9
8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents:
35444
diff
changeset
|
356 |
$(call WaitForSmartJavacFinish) |
33572 | 357 |
$(call CleanupCompareBuild) |
358 |
$(call CompareBuildDoComparison) |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32461
diff
changeset
|
359 |
|
32344
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
30415
diff
changeset
|
360 |
.PHONY: print-targets print-modules reconfigure main on-failure |
29662 | 361 |
endif |