author | lancea |
Wed, 20 Jun 2018 16:08:14 -0400 | |
branch | JDK-8188051-branch |
changeset 56798 | 3b438b3fef46 |
parent 50562 | 3903ab54107e |
child 52572 | 2ed42e41e712 |
child 56920 | e0750e33f818 |
permissions | -rw-r--r-- |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1 |
# |
49568 | 2 |
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
4 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
10 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
15 |
# accompanied this code). |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
16 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
20 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
23 |
# questions. |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
24 |
# |
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
25 |
|
29662 | 26 |
################################################################################ |
27 |
# This file contains helper functions for Init.gmk. |
|
28 |
# It is divided in two parts, depending on if a SPEC is present or not |
|
29 |
# (HAS_SPEC is true or not). |
|
30 |
################################################################################ |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
31 |
|
29662 | 32 |
ifndef _INITSUPPORT_GMK |
33 |
_INITSUPPORT_GMK := 1 |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
34 |
|
29662 | 35 |
ifeq ($(HAS_SPEC),) |
44027 | 36 |
|
50507
e5cdf2569510
8204682: Parsing for LOG=report=none is broken when combined with other keywords
ihse
parents:
49568
diff
changeset
|
37 |
# COMMA is defined in spec.gmk, but that is not included yet |
e5cdf2569510
8204682: Parsing for LOG=report=none is broken when combined with other keywords
ihse
parents:
49568
diff
changeset
|
38 |
COMMA := , |
e5cdf2569510
8204682: Parsing for LOG=report=none is broken when combined with other keywords
ihse
parents:
49568
diff
changeset
|
39 |
|
44027 | 40 |
# Include the corresponding closed file, if present. |
47313
eb28be8f935d
8188768: Fix interaction between make and autoconf after consolidation
ihse
parents:
47296
diff
changeset
|
41 |
ifneq ($(CUSTOM_MAKE_DIR), ) |
eb28be8f935d
8188768: Fix interaction between make and autoconf after consolidation
ihse
parents:
47296
diff
changeset
|
42 |
-include $(CUSTOM_MAKE_DIR)/InitSupport.gmk |
eb28be8f935d
8188768: Fix interaction between make and autoconf after consolidation
ihse
parents:
47296
diff
changeset
|
43 |
endif |
44027 | 44 |
|
29662 | 45 |
############################################################################## |
46 |
# Helper functions for the initial part of Init.gmk, before the spec file is |
|
47 |
# loaded. Most of these functions provide parsing and setting up make options |
|
48 |
# from the command-line. |
|
49 |
############################################################################## |
|
14111 | 50 |
|
29662 | 51 |
# Make control variables, handled by Init.gmk |
44027 | 52 |
INIT_CONTROL_VARIABLES += LOG CONF CONF_NAME SPEC JOBS TEST_JOBS CONF_CHECK \ |
47956
72a474c85aee
8177956: Add TEST_VM_OPTS as convenience for run-test arguments
ihse
parents:
47456
diff
changeset
|
53 |
COMPARE_BUILD JTREG GTEST TEST_OPTS TEST_VM_OPTS |
14111 | 54 |
|
29662 | 55 |
# All known make control variables |
56 |
MAKE_CONTROL_VARIABLES := $(INIT_CONTROL_VARIABLES) TEST JDK_FILTER |
|
14111 | 57 |
|
29662 | 58 |
# Define a simple reverse function. |
59 |
# Should maybe move to MakeBase.gmk, but we can't include that file now. |
|
60 |
reverse = \ |
|
61 |
$(if $(strip $(1)), $(call reverse, $(wordlist 2, $(words $(1)), $(1)))) \ |
|
62 |
$(firstword $(1)) |
|
14111 | 63 |
|
29662 | 64 |
# The variable MAKEOVERRIDES contains variable assignments from the command |
65 |
# line, but in reverse order to what the user entered. |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
66 |
# The '\#' <=> '\ 'dance is needed to keep values with space in them connected. |
29662 | 67 |
COMMAND_LINE_VARIABLES := $(subst \#,\ , $(call reverse, $(subst \ ,\#,$(MAKEOVERRIDES)))) |
68 |
||
29788 | 69 |
# A list like FOO="val1" BAR="val2" containing all user-supplied make |
70 |
# variables that we should propagate. |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
71 |
# The '\#' <=> '\ 'dance is needed to keep values with space in them connected. |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
72 |
USER_MAKE_VARS := $(subst \#,\ , $(filter-out $(addsuffix =%, $(INIT_CONTROL_VARIABLES)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
73 |
$(subst \ ,\#,$(MAKEOVERRIDES)))) |
14111 | 74 |
|
29788 | 75 |
# Setup information about available configurations, if any. |
47346 | 76 |
ifneq ($(CUSTOM_ROOT), ) |
77 |
build_dir=$(CUSTOM_ROOT)/build |
|
78 |
else |
|
47217 | 79 |
build_dir=$(topdir)/build |
80 |
endif |
|
29788 | 81 |
all_spec_files=$(wildcard $(build_dir)/*/spec.gmk) |
82 |
# Extract the configuration names from the path |
|
83 |
all_confs=$(patsubst %/spec.gmk, %, $(patsubst $(build_dir)/%, %, $(all_spec_files))) |
|
84 |
||
29662 | 85 |
# Check for unknown command-line variables |
86 |
define CheckControlVariables |
|
87 |
command_line_variables := $$(strip $$(foreach var, \ |
|
88 |
$$(subst \ ,_,$$(MAKEOVERRIDES)), \ |
|
89 |
$$(firstword $$(subst =, , $$(var))))) |
|
29788 | 90 |
unknown_command_line_variables := $$(strip \ |
91 |
$$(filter-out $$(MAKE_CONTROL_VARIABLES), $$(command_line_variables))) |
|
29662 | 92 |
ifneq ($$(unknown_command_line_variables), ) |
93 |
$$(info Note: Command line contains non-control variables:) |
|
94 |
$$(foreach var, $$(unknown_command_line_variables), $$(info * $$(var)=$$($$(var)))) |
|
95 |
$$(info Make sure it is not mistyped, and that you intend to override this variable.) |
|
96 |
$$(info 'make help' will list known control variables.) |
|
97 |
$$(info ) |
|
98 |
endif |
|
99 |
endef |
|
14111 | 100 |
|
29662 | 101 |
# Check for deprecated ALT_ variables |
102 |
define CheckDeprecatedEnvironment |
|
103 |
defined_alt_variables := $$(filter ALT_%, $$(.VARIABLES)) |
|
104 |
ifneq ($$(defined_alt_variables), ) |
|
105 |
$$(info Warning: You have the following ALT_ variables set:) |
|
106 |
$$(foreach var, $$(defined_alt_variables), $$(info * $$(var)=$$($$(var)))) |
|
107 |
$$(info ALT_ variables are deprecated, and may result in a failed build.) |
|
108 |
$$(info Please clean your environment.) |
|
109 |
$$(info ) |
|
110 |
endif |
|
111 |
endef |
|
14111 | 112 |
|
29662 | 113 |
# Check for invalid make flags like -j |
114 |
define CheckInvalidMakeFlags |
|
115 |
# This is a trick to get this rule to execute before any other rules |
|
116 |
# MAKEFLAGS only indicate -j if read in a recipe (!) |
|
117 |
$$(topdir)/make/Init.gmk: .FORCE |
|
118 |
$$(if $$(findstring --jobserver, $$(MAKEFLAGS)), \ |
|
119 |
$$(info Error: 'make -jN' is not supported, use 'make JOBS=N') \ |
|
120 |
$$(error Cannot continue) \ |
|
121 |
) |
|
122 |
.FORCE: |
|
123 |
.PHONY: .FORCE |
|
124 |
endef |
|
14111 | 125 |
|
29662 | 126 |
# Check that the CONF_CHECK option is valid and set up handling |
127 |
define ParseConfCheckOption |
|
128 |
ifeq ($$(CONF_CHECK), ) |
|
129 |
# Default behavior is fail |
|
130 |
CONF_CHECK := fail |
|
131 |
else ifneq ($$(filter-out auto fail ignore, $$(CONF_CHECK)),) |
|
132 |
$$(info Error: CONF_CHECK must be one of: auto, fail or ignore.) |
|
133 |
$$(error Cannot continue) |
|
134 |
endif |
|
135 |
endef |
|
14111 | 136 |
|
29662 | 137 |
define ParseConfAndSpec |
138 |
ifneq ($$(origin SPEC), undefined) |
|
20363 | 139 |
# We have been given a SPEC, check that it works out properly |
29662 | 140 |
ifneq ($$(origin CONF), undefined) |
141 |
# We also have a CONF argument. We can't have both. |
|
142 |
$$(info Error: Cannot use CONF=$$(CONF) and SPEC=$$(SPEC) at the same time. Choose one.) |
|
143 |
$$(error Cannot continue) |
|
20363 | 144 |
endif |
34491 | 145 |
ifneq ($$(origin CONF_NAME), undefined) |
146 |
# We also have a CONF_NAME argument. We can't have both. |
|
147 |
$$(info Error: Cannot use CONF_NAME=$$(CONF_NAME) and SPEC=$$(SPEC) at the same time. Choose one.) |
|
148 |
$$(error Cannot continue) |
|
149 |
endif |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
150 |
ifeq ($$(wildcard $$(SPEC)),) |
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
151 |
$$(info Error: Cannot locate spec.gmk, given by SPEC=$$(SPEC).) |
29662 | 152 |
$$(error Cannot continue) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
153 |
endif |
29662 | 154 |
ifeq ($$(filter /%, $$(SPEC)),) |
155 |
# If given with relative path, make it absolute |
|
156 |
SPECS := $$(CURDIR)/$$(strip $$(SPEC)) |
|
157 |
else |
|
158 |
SPECS := $$(SPEC) |
|
159 |
endif |
|
160 |
||
161 |
# For now, unset this SPEC variable. |
|
162 |
override SPEC := |
|
20363 | 163 |
else |
29662 | 164 |
# Use spec.gmk files in the build output directory |
29788 | 165 |
ifeq ($$(all_spec_files),) |
47346 | 166 |
ifneq ($(CUSTOM_ROOT), ) |
167 |
$$(info Error: No configurations found for $$(CUSTOM_ROOT).) |
|
168 |
else |
|
169 |
$$(info Error: No configurations found for $$(topdir).) |
|
170 |
endif |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
171 |
$$(info Please run 'bash configure' to create a configuration.) |
29662 | 172 |
$$(info ) |
173 |
$$(error Cannot continue) |
|
20363 | 174 |
endif |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
175 |
|
34491 | 176 |
ifneq ($$(origin CONF_NAME), undefined) |
177 |
ifneq ($$(origin CONF), undefined) |
|
178 |
# We also have a CONF argument. We can't have both. |
|
179 |
$$(info Error: Cannot use CONF=$$(CONF) and CONF_NAME=$$(CONF_NAME) at the same time. Choose one.) |
|
180 |
$$(error Cannot continue) |
|
181 |
endif |
|
182 |
matching_conf := $$(strip $$(filter $$(CONF_NAME), $$(all_confs))) |
|
183 |
ifeq ($$(matching_conf),) |
|
184 |
$$(info Error: No configurations found matching CONF_NAME=$$(CONF_NAME).) |
|
185 |
$$(info Available configurations in $$(build_dir):) |
|
186 |
$$(foreach var, $$(all_confs), $$(info * $$(var))) |
|
187 |
$$(error Cannot continue) |
|
188 |
else ifneq ($$(words $$(matching_conf)), 1) |
|
189 |
$$(info Error: Matching more than one configuration CONF_NAME=$$(CONF_NAME).) |
|
190 |
$$(info Available configurations in $$(build_dir):) |
|
191 |
$$(foreach var, $$(all_confs), $$(info * $$(var))) |
|
192 |
$$(error Cannot continue) |
|
193 |
else |
|
194 |
$$(info Building configuration '$$(matching_conf)' (matching CONF_NAME=$$(CONF_NAME))) |
|
195 |
endif |
|
196 |
# Create a SPEC definition. This will contain the path to exactly one spec file. |
|
197 |
SPECS := $$(build_dir)/$$(matching_conf)/spec.gmk |
|
198 |
else ifneq ($$(origin CONF), undefined) |
|
20363 | 199 |
# User have given a CONF= argument. |
200 |
ifeq ($$(CONF),) |
|
201 |
# If given CONF=, match all configurations |
|
29662 | 202 |
matching_confs := $$(strip $$(all_confs)) |
20363 | 203 |
else |
204 |
# Otherwise select those that contain the given CONF string |
|
29788 | 205 |
matching_confs := $$(strip $$(foreach var, $$(all_confs), \ |
206 |
$$(if $$(findstring $$(CONF), $$(var)), $$(var)))) |
|
20363 | 207 |
endif |
208 |
ifeq ($$(matching_confs),) |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
209 |
$$(info Error: No configurations found matching CONF=$$(CONF).) |
29662 | 210 |
$$(info Available configurations in $$(build_dir):) |
211 |
$$(foreach var, $$(all_confs), $$(info * $$(var))) |
|
212 |
$$(error Cannot continue) |
|
20363 | 213 |
else |
35008 | 214 |
# Don't repeat this output on make restarts caused by including |
215 |
# generated files. |
|
216 |
ifeq ($$(MAKE_RESTARTS),) |
|
217 |
ifeq ($$(words $$(matching_confs)), 1) |
|
48057
56d3576aadd5
8146977: Move the output "Building configuration X (matching Y)" to lower log level
ihse
parents:
47956
diff
changeset
|
218 |
ifneq ($$(findstring $$(LOG_LEVEL), info debug trace),) |
56d3576aadd5
8146977: Move the output "Building configuration X (matching Y)" to lower log level
ihse
parents:
47956
diff
changeset
|
219 |
$$(info Building configuration '$$(matching_confs)' (matching CONF=$$(CONF))) |
56d3576aadd5
8146977: Move the output "Building configuration X (matching Y)" to lower log level
ihse
parents:
47956
diff
changeset
|
220 |
endif |
35008 | 221 |
else |
222 |
$$(info Building these configurations (matching CONF=$$(CONF)):) |
|
223 |
$$(foreach var, $$(matching_confs), $$(info * $$(var))) |
|
224 |
endif |
|
20363 | 225 |
endif |
226 |
endif |
|
14111 | 227 |
|
20363 | 228 |
# Create a SPEC definition. This will contain the path to one or more spec.gmk files. |
29662 | 229 |
SPECS := $$(addsuffix /spec.gmk, $$(addprefix $$(build_dir)/, $$(matching_confs))) |
20363 | 230 |
else |
231 |
# No CONF or SPEC given, check the available configurations |
|
29662 | 232 |
ifneq ($$(words $$(all_spec_files)), 1) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
233 |
$$(info Error: No CONF given, but more than one configuration found.) |
29662 | 234 |
$$(info Available configurations in $$(build_dir):) |
235 |
$$(foreach var, $$(all_confs), $$(info * $$(var))) |
|
236 |
$$(info Please retry building with CONF=<config pattern> (or SPEC=<spec file>).) |
|
237 |
$$(info ) |
|
238 |
$$(error Cannot continue) |
|
20363 | 239 |
endif |
14111 | 240 |
|
20363 | 241 |
# We found exactly one configuration, use it |
29662 | 242 |
SPECS := $$(strip $$(all_spec_files)) |
20363 | 243 |
endif |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
244 |
endif |
29662 | 245 |
endef |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29060
diff
changeset
|
246 |
|
29788 | 247 |
# Extract main targets from Main.gmk using the spec provided in $2. |
248 |
# |
|
249 |
# Param 1: FORCE = force generation of main-targets.gmk or LAZY = do not force. |
|
250 |
# Param 2: The SPEC file to use. |
|
251 |
define DefineMainTargets |
|
252 |
||
253 |
# We will start by making sure the main-targets.gmk file is removed, if |
|
254 |
# make has not been restarted. By the -include, we will trigger the |
|
255 |
# rule for generating the file (which is never there since we removed it), |
|
256 |
# thus generating it fresh, and make will restart, incrementing the restart |
|
257 |
# count. |
|
258 |
main_targets_file := $$(dir $(strip $2))make-support/main-targets.gmk |
|
259 |
||
260 |
ifeq ($$(MAKE_RESTARTS),) |
|
261 |
# Only do this if make has not been restarted, and if we do not force it. |
|
262 |
ifeq ($(strip $1), FORCE) |
|
263 |
$$(shell rm -f $$(main_targets_file)) |
|
264 |
endif |
|
265 |
endif |
|
266 |
||
267 |
$$(main_targets_file): |
|
268 |
@( cd $$(topdir) && \ |
|
35008 | 269 |
$$(MAKE) $$(MAKE_LOG_FLAGS) -r -R -f $$(topdir)/make/Main.gmk \ |
29788 | 270 |
-I $$(topdir)/make/common SPEC=$(strip $2) NO_RECIPES=true \ |
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
271 |
$$(MAKE_LOG_VARS) \ |
29788 | 272 |
create-main-targets-include ) |
273 |
||
274 |
# Now include main-targets.gmk. This will define ALL_MAIN_TARGETS. |
|
275 |
-include $$(main_targets_file) |
|
276 |
endef |
|
277 |
||
29662 | 278 |
define PrintConfCheckFailed |
279 |
@echo ' ' |
|
280 |
@echo "Please rerun configure! Easiest way to do this is by running" |
|
281 |
@echo "'make reconfigure'." |
|
282 |
@echo "This behavior may also be changed using CONF_CHECK=<ignore|auto>." |
|
283 |
@echo ' ' |
|
284 |
endef |
|
13697 | 285 |
|
29662 | 286 |
else # $(HAS_SPEC)=true |
287 |
############################################################################## |
|
288 |
# Helper functions for the 'main' target. These functions assume a single, |
|
29788 | 289 |
# proper and existing SPEC is included. |
29662 | 290 |
############################################################################## |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29060
diff
changeset
|
291 |
|
47217 | 292 |
include $(TOPDIR)/make/common/MakeBase.gmk |
27560 | 293 |
|
29662 | 294 |
# Define basic logging setup |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
295 |
BUILD_LOG := $(OUTPUTDIR)/build.log |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
296 |
BUILD_PROFILE_LOG := $(OUTPUTDIR)/build-profile.log |
29662 | 297 |
|
37410
fbab762803ef
8154326: bash >(...) construct causes race conditions
erikj
parents:
35744
diff
changeset
|
298 |
BUILD_LOG_PIPE := > >($(TEE) -a $(BUILD_LOG)) 2> >($(TEE) -a $(BUILD_LOG) >&2) && wait |
27560 | 299 |
|
48907
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
300 |
ifneq ($(CUSTOM_ROOT), ) |
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
301 |
topdir=$(CUSTOM_ROOT) |
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
302 |
else |
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
303 |
topdir=$(TOPDIR) |
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
304 |
endif |
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
305 |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
306 |
# Parse COMPARE_BUILD into COMPARE_BUILD_* |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
307 |
# Syntax: COMPARE_BUILD=CONF=<configure options>:PATCH=<patch file>: |
32720
7e0e586a6817
8137014: Various improvements in build infrastructure
ihse
parents:
32715
diff
changeset
|
308 |
# MAKE=<make targets>:COMP_OPTS=<compare script options>: |
35744
4f5e0998b6e9
8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents:
35444
diff
changeset
|
309 |
# COMP_DIR=<compare script base dir>|<default>: |
4f5e0998b6e9
8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents:
35444
diff
changeset
|
310 |
# FAIL=<bool> |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
311 |
# If neither CONF or PATCH is given, assume <default> means CONF if it |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
312 |
# begins with "--", otherwise assume it means PATCH. |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
313 |
# MAKE and COMP_OPTS can only be used with CONF and/or PATCH specified. |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
314 |
# If any value contains "+", it will be replaced by space. |
35744
4f5e0998b6e9
8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents:
35444
diff
changeset
|
315 |
# FAIL can be set to false to have the return value of compare be ignored. |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
316 |
define ParseCompareBuild |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
317 |
ifneq ($$(COMPARE_BUILD), ) |
48907
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
318 |
COMPARE_BUILD_OUTPUTDIR := $(topdir)/build/compare-build/$(CONF_NAME) |
35744
4f5e0998b6e9
8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents:
35444
diff
changeset
|
319 |
COMPARE_BUILD_FAIL := true |
33572 | 320 |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
321 |
ifneq ($$(findstring :, $$(COMPARE_BUILD)), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
322 |
$$(foreach part, $$(subst :, , $$(COMPARE_BUILD)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
323 |
$$(if $$(filter PATCH=%, $$(part)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
324 |
$$(eval COMPARE_BUILD_PATCH=$$(strip $$(patsubst PATCH=%, %, $$(part)))) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
325 |
) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
326 |
$$(if $$(filter CONF=%, $$(part)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
327 |
$$(eval COMPARE_BUILD_CONF=$$(strip $$(subst +, , $$(patsubst CONF=%, %, $$(part))))) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
328 |
) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
329 |
$$(if $$(filter MAKE=%, $$(part)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
330 |
$$(eval COMPARE_BUILD_MAKE=$$(strip $$(subst +, , $$(patsubst MAKE=%, %, $$(part))))) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
331 |
) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
332 |
$$(if $$(filter COMP_OPTS=%, $$(part)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
333 |
$$(eval COMPARE_BUILD_COMP_OPTS=$$(strip $$(subst +, , $$(patsubst COMP_OPTS=%, %, $$(part))))) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
334 |
) \ |
32720
7e0e586a6817
8137014: Various improvements in build infrastructure
ihse
parents:
32715
diff
changeset
|
335 |
$$(if $$(filter COMP_DIR=%, $$(part)), \ |
7e0e586a6817
8137014: Various improvements in build infrastructure
ihse
parents:
32715
diff
changeset
|
336 |
$$(eval COMPARE_BUILD_COMP_DIR=$$(strip $$(subst +, , $$(patsubst COMP_DIR=%, %, $$(part))))) \ |
7e0e586a6817
8137014: Various improvements in build infrastructure
ihse
parents:
32715
diff
changeset
|
337 |
) \ |
35744
4f5e0998b6e9
8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents:
35444
diff
changeset
|
338 |
$$(if $$(filter FAIL=%, $$(part)), \ |
4f5e0998b6e9
8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents:
35444
diff
changeset
|
339 |
$$(eval COMPARE_BUILD_FAIL=$$(strip $$(subst +, , $$(patsubst FAIL=%, %, $$(part))))) \ |
4f5e0998b6e9
8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents:
35444
diff
changeset
|
340 |
) \ |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
341 |
) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
342 |
else |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
343 |
# Separate handling for single field case, to allow for spaces in values. |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
344 |
ifneq ($$(filter PATCH=%, $$(COMPARE_BUILD)), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
345 |
COMPARE_BUILD_PATCH=$$(strip $$(patsubst PATCH=%, %, $$(COMPARE_BUILD))) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
346 |
else ifneq ($$(filter CONF=%, $$(COMPARE_BUILD)), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
347 |
COMPARE_BUILD_CONF=$$(strip $$(subst +, , $$(patsubst CONF=%, %, $$(COMPARE_BUILD)))) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
348 |
else ifneq ($$(filter --%, $$(COMPARE_BUILD)), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
349 |
# Assume CONF if value begins with -- |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
350 |
COMPARE_BUILD_CONF=$$(strip $$(subst +, , $$(COMPARE_BUILD))) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
351 |
else |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
352 |
# Otherwise assume patch file |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
353 |
COMPARE_BUILD_PATCH=$$(strip $$(COMPARE_BUILD)) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
354 |
endif |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
355 |
endif |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
356 |
ifneq ($$(COMPARE_BUILD_PATCH), ) |
48907
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
357 |
ifneq ($$(wildcard $$(topdir)/$$(COMPARE_BUILD_PATCH)), ) |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
358 |
# Assume relative path, if file exists |
48907
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
359 |
COMPARE_BUILD_PATCH := $$(wildcard $$(topdir)/$$(COMPARE_BUILD_PATCH)) |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
360 |
else ifeq ($$(wildcard $$(COMPARE_BUILD_PATCH)), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
361 |
$$(error Patch file $$(COMPARE_BUILD_PATCH) does not exist) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
362 |
endif |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
363 |
endif |
35744
4f5e0998b6e9
8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents:
35444
diff
changeset
|
364 |
ifneq ($$(COMPARE_BUILD_FAIL), true) |
4f5e0998b6e9
8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents:
35444
diff
changeset
|
365 |
COMPARE_BUILD_IGNORE_RESULT := || true |
4f5e0998b6e9
8149479: Fix compare.sh to have a clean baseline with COMPARE_BUILD
erikj
parents:
35444
diff
changeset
|
366 |
endif |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
367 |
endif |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
368 |
endef |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
369 |
|
33572 | 370 |
# Prepare for a comparison rebuild |
371 |
define PrepareCompareBuild |
|
372 |
$(ECHO) "Preparing for comparison rebuild" |
|
373 |
# Apply patch, if any |
|
49138
67912cbf784a
8199103: Can't use COMPARE_BUILD with PATCH from custom root
ihse
parents:
48907
diff
changeset
|
374 |
$(if $(COMPARE_BUILD_PATCH), cd $(topdir) && $(PATCH) -p1 < $(COMPARE_BUILD_PATCH)) |
33572 | 375 |
# Move the first build away temporarily |
48907
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
376 |
$(RM) -r $(topdir)/build/.compare-build-temp |
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
377 |
$(MKDIR) -p $(topdir)/build/.compare-build-temp |
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
378 |
$(MV) $(OUTPUTDIR) $(topdir)/build/.compare-build-temp |
33572 | 379 |
# Restore an old compare-build, or create a new compare-build directory. |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
380 |
if test -d $(COMPARE_BUILD_OUTPUTDIR); then \ |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
381 |
$(MV) $(COMPARE_BUILD_OUTPUTDIR) $(OUTPUTDIR); \ |
33572 | 382 |
else \ |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
383 |
$(MKDIR) -p $(OUTPUTDIR); \ |
33572 | 384 |
fi |
385 |
# Re-run configure with the same arguments (and possibly some additional), |
|
386 |
# must be done after patching. |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
387 |
( cd $(OUTPUTDIR) && PATH="$(ORIGINAL_PATH)" \ |
48907
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
388 |
$(BASH) $(topdir)/configure $(CONFIGURE_COMMAND_LINE) $(COMPARE_BUILD_CONF)) |
33572 | 389 |
endef |
390 |
||
391 |
# Cleanup after a compare build |
|
392 |
define CleanupCompareBuild |
|
393 |
# If running with a COMPARE_BUILD patch, reverse-apply it |
|
49138
67912cbf784a
8199103: Can't use COMPARE_BUILD with PATCH from custom root
ihse
parents:
48907
diff
changeset
|
394 |
$(if $(COMPARE_BUILD_PATCH), cd $(topdir) && $(PATCH) -R -p1 < $(COMPARE_BUILD_PATCH)) |
33572 | 395 |
# Move this build away and restore the original build |
48907
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
396 |
$(MKDIR) -p $(topdir)/build/compare-build |
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
397 |
$(MV) $(OUTPUTDIR) $(COMPARE_BUILD_OUTPUTDIR) |
48907
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
398 |
$(MV) $(topdir)/build/.compare-build-temp/$(CONF_NAME) $(OUTPUTDIR) |
c38163717870
8198227: Fix COMPARE_BUILD after forest consolidation
ihse
parents:
48057
diff
changeset
|
399 |
$(RM) -r $(topdir)/build/.compare-build-temp |
33572 | 400 |
endef |
401 |
||
402 |
# Do the actual comparison of two builds |
|
403 |
define CompareBuildDoComparison |
|
404 |
# Compare first and second build. Ignore any error code from compare.sh. |
|
405 |
$(ECHO) "Comparing between comparison rebuild (this/new) and baseline (other/old)" |
|
406 |
$(if $(COMPARE_BUILD_COMP_DIR), \ |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
407 |
+(cd $(COMPARE_BUILD_OUTPUTDIR) && ./compare.sh $(COMPARE_BUILD_COMP_OPTS) \ |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
408 |
-2dirs $(COMPARE_BUILD_OUTPUTDIR)/$(COMPARE_BUILD_COMP_DIR) \ |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
409 |
$(OUTPUTDIR)/$(COMPARE_BUILD_COMP_DIR) $(COMPARE_BUILD_IGNORE_RESULT)), \ |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
410 |
+(cd $(COMPARE_BUILD_OUTPUTDIR) && ./compare.sh $(COMPARE_BUILD_COMP_OPTS) \ |
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
411 |
-o $(OUTPUTDIR) $(COMPARE_BUILD_IGNORE_RESULT)) \ |
33572 | 412 |
) |
413 |
endef |
|
414 |
||
415 |
define PrintFailureReports |
|
49568 | 416 |
$(if $(filter none, $(LOG_REPORT)), , \ |
417 |
$(if $(wildcard $(MAKESUPPORT_OUTPUTDIR)/failure-logs/*.log), \ |
|
418 |
$(PRINTF) "\n=== Output from failing command(s) repeated here ===\n" $(NEWLINE) \ |
|
419 |
$(foreach logfile, $(sort $(wildcard $(MAKESUPPORT_OUTPUTDIR)/failure-logs/*.log)), \ |
|
420 |
$(PRINTF) "* For target $(notdir $(basename $(logfile))):\n" $(NEWLINE) \ |
|
421 |
$(if $(filter all, $(LOG_REPORT)), \ |
|
422 |
$(GREP) -v -e "^Note: including file:" < $(logfile) || true $(NEWLINE) \ |
|
423 |
, \ |
|
424 |
($(GREP) -v -e "^Note: including file:" < $(logfile) || true) | $(HEAD) -n 12 $(NEWLINE) \ |
|
425 |
if test `$(WC) -l < $(logfile)` -gt 12; then \ |
|
426 |
$(ECHO) " ... (rest of output omitted)" ; \ |
|
427 |
fi $(NEWLINE) \ |
|
428 |
) \ |
|
429 |
) \ |
|
430 |
$(PRINTF) "\n* All command lines available in $(MAKESUPPORT_OUTPUTDIR)/failure-logs.\n" $(NEWLINE) \ |
|
431 |
$(PRINTF) "=== End of repeated output ===\n" \ |
|
33572 | 432 |
) \ |
433 |
) |
|
434 |
endef |
|
435 |
||
436 |
define PrintBuildLogFailures |
|
49568 | 437 |
$(if $(filter none, $(LOG_REPORT)), , \ |
438 |
if $(GREP) -q "recipe for target .* failed" $(BUILD_LOG) 2> /dev/null; then \ |
|
439 |
$(PRINTF) "\n=== Make failed targets repeated here ===\n" ; \ |
|
440 |
$(GREP) "recipe for target .* failed" $(BUILD_LOG) ; \ |
|
441 |
$(PRINTF) "=== End of repeated output ===\n" ; \ |
|
442 |
$(PRINTF) "\nHint: Try searching the build log for the name of the first failed target.\n" ; \ |
|
443 |
else \ |
|
444 |
$(PRINTF) "\nNo indication of failed target found.\n" ; \ |
|
445 |
$(PRINTF) "Hint: Try searching the build log for '] Error'.\n" ; \ |
|
446 |
fi \ |
|
447 |
) |
|
33572 | 448 |
endef |
449 |
||
29662 | 450 |
define RotateLogFiles |
35008 | 451 |
$(RM) $(BUILD_LOG).old 2> /dev/null && \ |
29662 | 452 |
$(MV) $(BUILD_LOG) $(BUILD_LOG).old 2> /dev/null || true |
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
453 |
$(if $(findstring true, $(LOG_PROFILE_TIMES_FILE)), \ |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
454 |
$(RM) $(BUILD_PROFILE_LOG).old 2> /dev/null && \ |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
455 |
$(MV) $(BUILD_PROFILE_LOG) $(BUILD_PROFILE_LOG).old 2> /dev/null || true \ |
29662 | 456 |
) |
457 |
endef |
|
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
25854
diff
changeset
|
458 |
|
50562
3903ab54107e
8204664: PrepareFailureLogs should be done after sequential make targets
ihse
parents:
50507
diff
changeset
|
459 |
# Failure logs are only supported for "parallel" main targets, not the |
3903ab54107e
8204664: PrepareFailureLogs should be done after sequential make targets
ihse
parents:
50507
diff
changeset
|
460 |
# (trivial) sequential make targets (such as clean and reconfigure), |
3903ab54107e
8204664: PrepareFailureLogs should be done after sequential make targets
ihse
parents:
50507
diff
changeset
|
461 |
# since the failure-logs directory creation will conflict with clean. |
32344
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
29788
diff
changeset
|
462 |
define PrepareFailureLogs |
35008 | 463 |
$(RM) -r $(MAKESUPPORT_OUTPUTDIR)/failure-logs 2> /dev/null && \ |
32344
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
29788
diff
changeset
|
464 |
$(MKDIR) -p $(MAKESUPPORT_OUTPUTDIR)/failure-logs |
44027 | 465 |
$(RM) $(MAKESUPPORT_OUTPUTDIR)/exit-with-error 2> /dev/null |
32344
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
29788
diff
changeset
|
466 |
endef |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
29788
diff
changeset
|
467 |
|
29662 | 468 |
# Remove any javac server logs and port files. This |
469 |
# prevents a new make run to reuse the previous servers. |
|
470 |
define PrepareSmartJavac |
|
471 |
$(if $(SJAVAC_SERVER_DIR), \ |
|
472 |
$(RM) -r $(SJAVAC_SERVER_DIR) 2> /dev/null && \ |
|
473 |
$(MKDIR) -p $(SJAVAC_SERVER_DIR) \ |
|
474 |
) |
|
475 |
endef |
|
27560 | 476 |
|
29662 | 477 |
define CleanupSmartJavac |
478 |
[ -f $(SJAVAC_SERVER_DIR)/server.port ] && $(ECHO) Stopping sjavac server && \ |
|
479 |
$(TOUCH) $(SJAVAC_SERVER_DIR)/server.port.stop; true |
|
480 |
endef |
|
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
25854
diff
changeset
|
481 |
|
35370
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
482 |
ifeq ($(OPENJDK_BUILD_OS), windows) |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
483 |
# On windows we need to synchronize with the javac server to be able to |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
484 |
# move or remove the build output directory. Since we have no proper |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
485 |
# synchronization process, wait for a while and hope it helps. This is only |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
486 |
# used by build comparisons. |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
487 |
define WaitForSmartJavacFinish |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
488 |
$(if $(SJAVAC_SERVER_DIR), \ |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
489 |
sleep 5\ |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
490 |
) |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
491 |
endef |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
492 |
else |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
493 |
define WaitForSmartJavacFinish |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
494 |
endef |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
495 |
endif |
f9b430645a18
8148120: Incremental update from build-infra project
ihse
parents:
35008
diff
changeset
|
496 |
|
29662 | 497 |
define StartGlobalTimer |
35008 | 498 |
$(RM) -r $(BUILDTIMESDIR) 2> /dev/null && \ |
499 |
$(MKDIR) -p $(BUILDTIMESDIR) && \ |
|
29662 | 500 |
$(call RecordStartTime,TOTAL) |
501 |
endef |
|
27560 | 502 |
|
29662 | 503 |
define StopGlobalTimer |
504 |
$(call RecordEndTime,TOTAL) |
|
505 |
endef |
|
27560 | 506 |
|
29662 | 507 |
# Find all build_time_* files and print their contents in a list sorted |
508 |
# on the name of the sub repository. |
|
509 |
define ReportBuildTimes |
|
35008 | 510 |
$(PRINTF) $(LOG_INFO) -- \ |
29662 | 511 |
"----- Build times -------\nStart %s\nEnd %s\n%s\n%s\n-------------------------\n" \ |
512 |
"`$(CAT) $(BUILDTIMESDIR)/build_time_start_TOTAL_human_readable`" \ |
|
513 |
"`$(CAT) $(BUILDTIMESDIR)/build_time_end_TOTAL_human_readable`" \ |
|
514 |
"`$(LS) $(BUILDTIMESDIR)/build_time_diff_* | $(GREP) -v _TOTAL | \ |
|
515 |
$(XARGS) $(CAT) | $(SORT) -k 2`" \ |
|
35008 | 516 |
"`$(CAT) $(BUILDTIMESDIR)/build_time_diff_TOTAL`" \ |
517 |
$(BUILD_LOG_PIPE) |
|
29662 | 518 |
endef |
27560 | 519 |
|
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
520 |
define ReportProfileTimes |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
521 |
$(if $(findstring true, $(LOG_PROFILE_TIMES_LOG)), \ |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
522 |
[ ! -f $(BUILD_PROFILE_LOG) ] || \ |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
523 |
{ $(ECHO) Begin $(notdir $(BUILD_PROFILE_LOG)) && \ |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
524 |
$(CAT) $(BUILD_PROFILE_LOG) && \ |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
525 |
$(ECHO) End $(notdir $(BUILD_PROFILE_LOG)); \ |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
526 |
} \ |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
527 |
$(BUILD_LOG_PIPE) |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
528 |
) |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
529 |
endef |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
530 |
|
29662 | 531 |
endif # HAS_SPEC |
27560 | 532 |
|
49568 | 533 |
# Look for a given option in the LOG variable, and if found, set a variable |
534 |
# and remove the option from the LOG variable |
|
535 |
# $1: The option to look for |
|
536 |
# $2: The variable to set to "true" if the option is found |
|
537 |
define ParseLogOption |
|
538 |
ifneq ($$(findstring $1, $$(LOG)),) |
|
539 |
override $2 := true |
|
540 |
# First try to remove ",<option>" if it exists, otherwise just remove "<option>" |
|
541 |
LOG_STRIPPED := $$(subst $1,, $$(subst $$(COMMA)$$(strip $1),, $$(LOG))) |
|
542 |
# We might have ended up with a leading comma. Remove it. Need override |
|
543 |
# since LOG is set from the command line. |
|
544 |
override LOG := $$(strip $$(patsubst $$(COMMA)%, %, $$(LOG_STRIPPED))) |
|
545 |
endif |
|
546 |
endef |
|
547 |
||
548 |
# Look for a given option with an assignment in the LOG variable, and if found, |
|
549 |
# set a variable to that value and remove the option from the LOG variable |
|
550 |
# $1: The option to look for |
|
551 |
# $2: The variable to set to the value of the option, if found |
|
552 |
define ParseLogValue |
|
553 |
ifneq ($$(findstring $1=, $$(LOG)),) |
|
554 |
# Make words of out comma-separated list and find the one with opt=val |
|
555 |
value := $$(strip $$(subst $$(strip $1)=,, $$(filter $$(strip $1)=%, $$(subst $$(COMMA), , $$(LOG))))) |
|
556 |
override $2 := $$(value) |
|
557 |
# First try to remove ",<option>" if it exists, otherwise just remove "<option>" |
|
558 |
LOG_STRIPPED := $$(subst $$(strip $1)=$$(value),, \ |
|
559 |
$$(subst $$(COMMA)$$(strip $1)=$$(value),, $$(LOG))) |
|
560 |
# We might have ended up with a leading comma. Remove it. Need override |
|
561 |
# since LOG is set from the command line. |
|
562 |
override LOG := $$(strip $$(patsubst $$(COMMA)%, %, $$(LOG_STRIPPED))) |
|
563 |
endif |
|
564 |
endef |
|
565 |
||
566 |
||
567 |
define ParseLogLevel |
|
568 |
# Catch old-style VERBOSE= command lines. |
|
569 |
ifneq ($$(origin VERBOSE), undefined) |
|
570 |
$$(info Error: VERBOSE is deprecated. Use LOG=<warn|info|debug|trace> instead.) |
|
571 |
$$(error Cannot continue) |
|
572 |
endif |
|
573 |
||
574 |
# Setup logging according to LOG |
|
575 |
||
576 |
# If "nofile" is present, do not log to a file |
|
577 |
$$(eval $$(call ParseLogOption, nofile, LOG_NOFILE)) |
|
578 |
||
579 |
# If "cmdline" is present, print all executes "important" command lines. |
|
580 |
$$(eval $$(call ParseLogOption, cmdlines, LOG_CMDLINES)) |
|
581 |
||
582 |
# If "report" is present, use non-standard reporting options at build failure. |
|
583 |
$$(eval $$(call ParseLogValue, report, LOG_REPORT)) |
|
584 |
ifneq ($$(LOG_REPORT), ) |
|
585 |
ifeq ($$(filter $$(LOG_REPORT), none all default), ) |
|
586 |
$$(info Error: LOG=report has invalid value: $$(LOG_REPORT).) |
|
587 |
$$(info Valid values: LOG=report=<none>|<all>|<default>) |
|
588 |
$$(error Cannot continue) |
|
589 |
endif |
|
590 |
endif |
|
591 |
||
592 |
# If "profile-to-log" is present, write shell times in build log |
|
593 |
$$(eval $$(call ParseLogOption, profile-to-log, LOG_PROFILE_TIMES_LOG)) |
|
594 |
||
595 |
# If "profile" is present, write shell times in separate log file |
|
596 |
# IMPORTANT: $(ParseLogOption profile-to-log) should go first. Otherwise |
|
597 |
# parsing of 'LOG=debug,profile-to-log,nofile' ends up in the following error: |
|
598 |
# Error: LOG contains unknown option or log level: debug-to-log. |
|
599 |
$$(eval $$(call ParseLogOption, profile, LOG_PROFILE_TIMES_FILE)) |
|
600 |
||
601 |
# Treat LOG=profile-to-log as if it were LOG=profile,profile-to-log |
|
602 |
LOG_PROFILE_TIMES_FILE := $$(firstword $$(LOG_PROFILE_TIMES_FILE) $$(LOG_PROFILE_TIMES_LOG)) |
|
603 |
||
604 |
override LOG_LEVEL := $$(LOG) |
|
605 |
||
606 |
ifeq ($$(LOG_LEVEL),) |
|
607 |
# Set LOG to "warn" as default if not set |
|
608 |
override LOG_LEVEL := warn |
|
609 |
endif |
|
610 |
||
611 |
ifeq ($$(LOG_LEVEL), warn) |
|
612 |
override MAKE_LOG_FLAGS := -s |
|
613 |
else ifeq ($$(LOG_LEVEL), info) |
|
614 |
override MAKE_LOG_FLAGS := -s |
|
615 |
else ifeq ($$(LOG_LEVEL), debug) |
|
616 |
override MAKE_LOG_FLAGS := |
|
617 |
else ifeq ($$(LOG_LEVEL), trace) |
|
618 |
override MAKE_LOG_FLAGS := |
|
619 |
else |
|
620 |
$$(info Error: LOG contains unknown option or log level: $$(LOG).) |
|
621 |
$$(info LOG can be <level>[,<opt>[...]] where <opt> is nofile | cmdlines | profile | profile-to-log) |
|
622 |
$$(info and <level> is warn | info | debug | trace) |
|
623 |
$$(error Cannot continue) |
|
624 |
endif |
|
625 |
endef |
|
626 |
||
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
627 |
MAKE_LOG_VARS = $(foreach v, \ |
49568 | 628 |
LOG_LEVEL LOG_NOFILE LOG_CMDLINES LOG_REPORT LOG_PROFILE_TIMES_LOG \ |
629 |
LOG_PROFILE_TIMES_FILE, \ |
|
44465
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
630 |
$v=$($v) \ |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
631 |
) |
26fabd8abee9
8177770: Need more precise control on build system logging
asemenyuk
parents:
44027
diff
changeset
|
632 |
|
29662 | 633 |
endif # _INITSUPPORT_GMK |