author | jprovino |
Thu, 07 Jan 2016 20:06:51 +0000 | |
changeset 35270 | bcafb17da919 |
parent 34594 | 7e0595aab028 |
child 35008 | ef0cd710989f |
permissions | -rw-r--r-- |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
1 |
# |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29060
diff
changeset
|
2 |
# Copyright (c) 2011, 2015, 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),) |
36 |
############################################################################## |
|
37 |
# Helper functions for the initial part of Init.gmk, before the spec file is |
|
38 |
# loaded. Most of these functions provide parsing and setting up make options |
|
39 |
# from the command-line. |
|
40 |
############################################################################## |
|
14111 | 41 |
|
29662 | 42 |
# Make control variables, handled by Init.gmk |
34594
7e0595aab028
8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents:
34491
diff
changeset
|
43 |
INIT_CONTROL_VARIABLES := LOG CONF CONF_NAME SPEC JOBS TEST_JOBS CONF_CHECK \ |
7e0595aab028
8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents:
34491
diff
changeset
|
44 |
COMPARE_BUILD |
14111 | 45 |
|
29662 | 46 |
# All known make control variables |
47 |
MAKE_CONTROL_VARIABLES := $(INIT_CONTROL_VARIABLES) TEST JDK_FILTER |
|
14111 | 48 |
|
29662 | 49 |
# Define a simple reverse function. |
50 |
# Should maybe move to MakeBase.gmk, but we can't include that file now. |
|
51 |
reverse = \ |
|
52 |
$(if $(strip $(1)), $(call reverse, $(wordlist 2, $(words $(1)), $(1)))) \ |
|
53 |
$(firstword $(1)) |
|
14111 | 54 |
|
29662 | 55 |
# The variable MAKEOVERRIDES contains variable assignments from the command |
56 |
# line, but in reverse order to what the user entered. |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
57 |
# The '\#' <=> '\ 'dance is needed to keep values with space in them connected. |
29662 | 58 |
COMMAND_LINE_VARIABLES := $(subst \#,\ , $(call reverse, $(subst \ ,\#,$(MAKEOVERRIDES)))) |
59 |
||
29788 | 60 |
# A list like FOO="val1" BAR="val2" containing all user-supplied make |
61 |
# variables that we should propagate. |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
62 |
# 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
|
63 |
USER_MAKE_VARS := $(subst \#,\ , $(filter-out $(addsuffix =%, $(INIT_CONTROL_VARIABLES)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
64 |
$(subst \ ,\#,$(MAKEOVERRIDES)))) |
14111 | 65 |
|
29788 | 66 |
# Setup information about available configurations, if any. |
67 |
build_dir=$(topdir)/build |
|
68 |
all_spec_files=$(wildcard $(build_dir)/*/spec.gmk) |
|
69 |
# Extract the configuration names from the path |
|
70 |
all_confs=$(patsubst %/spec.gmk, %, $(patsubst $(build_dir)/%, %, $(all_spec_files))) |
|
71 |
||
29662 | 72 |
# Check for unknown command-line variables |
73 |
define CheckControlVariables |
|
74 |
command_line_variables := $$(strip $$(foreach var, \ |
|
75 |
$$(subst \ ,_,$$(MAKEOVERRIDES)), \ |
|
76 |
$$(firstword $$(subst =, , $$(var))))) |
|
29788 | 77 |
unknown_command_line_variables := $$(strip \ |
78 |
$$(filter-out $$(MAKE_CONTROL_VARIABLES), $$(command_line_variables))) |
|
29662 | 79 |
ifneq ($$(unknown_command_line_variables), ) |
80 |
$$(info Note: Command line contains non-control variables:) |
|
81 |
$$(foreach var, $$(unknown_command_line_variables), $$(info * $$(var)=$$($$(var)))) |
|
82 |
$$(info Make sure it is not mistyped, and that you intend to override this variable.) |
|
83 |
$$(info 'make help' will list known control variables.) |
|
84 |
$$(info ) |
|
85 |
endif |
|
86 |
endef |
|
14111 | 87 |
|
29662 | 88 |
# Check for deprecated ALT_ variables |
89 |
define CheckDeprecatedEnvironment |
|
90 |
defined_alt_variables := $$(filter ALT_%, $$(.VARIABLES)) |
|
91 |
ifneq ($$(defined_alt_variables), ) |
|
92 |
$$(info Warning: You have the following ALT_ variables set:) |
|
93 |
$$(foreach var, $$(defined_alt_variables), $$(info * $$(var)=$$($$(var)))) |
|
94 |
$$(info ALT_ variables are deprecated, and may result in a failed build.) |
|
95 |
$$(info Please clean your environment.) |
|
96 |
$$(info ) |
|
97 |
endif |
|
98 |
endef |
|
14111 | 99 |
|
29662 | 100 |
# Check for invalid make flags like -j |
101 |
define CheckInvalidMakeFlags |
|
102 |
# This is a trick to get this rule to execute before any other rules |
|
103 |
# MAKEFLAGS only indicate -j if read in a recipe (!) |
|
104 |
$$(topdir)/make/Init.gmk: .FORCE |
|
105 |
$$(if $$(findstring --jobserver, $$(MAKEFLAGS)), \ |
|
106 |
$$(info Error: 'make -jN' is not supported, use 'make JOBS=N') \ |
|
107 |
$$(error Cannot continue) \ |
|
108 |
) |
|
109 |
.FORCE: |
|
110 |
.PHONY: .FORCE |
|
111 |
endef |
|
14111 | 112 |
|
29662 | 113 |
# Check that the CONF_CHECK option is valid and set up handling |
114 |
define ParseConfCheckOption |
|
115 |
ifeq ($$(CONF_CHECK), ) |
|
116 |
# Default behavior is fail |
|
117 |
CONF_CHECK := fail |
|
118 |
else ifneq ($$(filter-out auto fail ignore, $$(CONF_CHECK)),) |
|
119 |
$$(info Error: CONF_CHECK must be one of: auto, fail or ignore.) |
|
120 |
$$(error Cannot continue) |
|
121 |
endif |
|
122 |
endef |
|
14111 | 123 |
|
29662 | 124 |
define ParseLogLevel |
125 |
# Catch old-style VERBOSE= command lines. |
|
126 |
ifneq ($$(origin VERBOSE), undefined) |
|
127 |
$$(info Error: VERBOSE is deprecated. Use LOG=<warn|info|debug|trace> instead.) |
|
128 |
$$(error Cannot continue) |
|
129 |
endif |
|
14111 | 130 |
|
29662 | 131 |
# Setup logging according to LOG |
14379
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14111
diff
changeset
|
132 |
|
20363 | 133 |
# If the "nofile" argument is given, act on it and strip it away |
29662 | 134 |
ifneq ($$(findstring nofile, $$(LOG)),) |
135 |
LOG_NOFILE := true |
|
20363 | 136 |
# COMMA is defined in spec.gmk, but that is not included yet |
29662 | 137 |
COMMA := , |
138 |
# First try to remove ",nofile" if it exists, otherwise just remove "nofile" |
|
139 |
LOG_STRIPPED := $$(subst nofile,, $$(subst $$(COMMA)nofile,, $$(LOG))) |
|
20363 | 140 |
# We might have ended up with a leading comma. Remove it |
29662 | 141 |
LOG_LEVEL := $$(strip $$(patsubst $$(COMMA)%, %, $$(LOG_STRIPPED))) |
20363 | 142 |
else |
29662 | 143 |
LOG_LEVEL := $$(LOG) |
20363 | 144 |
endif |
13697 | 145 |
|
20363 | 146 |
ifeq ($$(LOG_LEVEL),) |
29662 | 147 |
# Set LOG to "warn" as default if not set |
148 |
LOG_LEVEL := warn |
|
20363 | 149 |
endif |
29662 | 150 |
|
151 |
ifeq ($$(LOG_LEVEL), warn) |
|
152 |
MAKE_LOG_FLAGS := -s |
|
153 |
else ifeq ($$(LOG_LEVEL), info) |
|
154 |
MAKE_LOG_FLAGS := -s |
|
155 |
else ifeq ($$(LOG_LEVEL), debug) |
|
156 |
MAKE_LOG_FLAGS := |
|
157 |
else ifeq ($$(LOG_LEVEL), trace) |
|
158 |
MAKE_LOG_FLAGS := -d |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
159 |
else |
20363 | 160 |
$$(info Error: LOG must be one of: warn, info, debug or trace.) |
29662 | 161 |
$$(error Cannot continue) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
162 |
endif |
29662 | 163 |
endef |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
164 |
|
29662 | 165 |
define ParseConfAndSpec |
166 |
ifneq ($$(origin SPEC), undefined) |
|
20363 | 167 |
# We have been given a SPEC, check that it works out properly |
29662 | 168 |
ifneq ($$(origin CONF), undefined) |
169 |
# We also have a CONF argument. We can't have both. |
|
170 |
$$(info Error: Cannot use CONF=$$(CONF) and SPEC=$$(SPEC) at the same time. Choose one.) |
|
171 |
$$(error Cannot continue) |
|
20363 | 172 |
endif |
34491 | 173 |
ifneq ($$(origin CONF_NAME), undefined) |
174 |
# We also have a CONF_NAME argument. We can't have both. |
|
175 |
$$(info Error: Cannot use CONF_NAME=$$(CONF_NAME) and SPEC=$$(SPEC) at the same time. Choose one.) |
|
176 |
$$(error Cannot continue) |
|
177 |
endif |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
178 |
ifeq ($$(wildcard $$(SPEC)),) |
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
179 |
$$(info Error: Cannot locate spec.gmk, given by SPEC=$$(SPEC).) |
29662 | 180 |
$$(error Cannot continue) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
181 |
endif |
29662 | 182 |
ifeq ($$(filter /%, $$(SPEC)),) |
183 |
# If given with relative path, make it absolute |
|
184 |
SPECS := $$(CURDIR)/$$(strip $$(SPEC)) |
|
185 |
else |
|
186 |
SPECS := $$(SPEC) |
|
187 |
endif |
|
188 |
||
189 |
# For now, unset this SPEC variable. |
|
190 |
override SPEC := |
|
20363 | 191 |
else |
29662 | 192 |
# Use spec.gmk files in the build output directory |
29788 | 193 |
ifeq ($$(all_spec_files),) |
29662 | 194 |
$$(info Error: No configurations found for $$(topdir).) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
195 |
$$(info Please run 'bash configure' to create a configuration.) |
29662 | 196 |
$$(info ) |
197 |
$$(error Cannot continue) |
|
20363 | 198 |
endif |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
199 |
|
34491 | 200 |
ifneq ($$(origin CONF_NAME), undefined) |
201 |
ifneq ($$(origin CONF), undefined) |
|
202 |
# We also have a CONF argument. We can't have both. |
|
203 |
$$(info Error: Cannot use CONF=$$(CONF) and CONF_NAME=$$(CONF_NAME) at the same time. Choose one.) |
|
204 |
$$(error Cannot continue) |
|
205 |
endif |
|
206 |
matching_conf := $$(strip $$(filter $$(CONF_NAME), $$(all_confs))) |
|
207 |
ifeq ($$(matching_conf),) |
|
208 |
$$(info Error: No configurations found matching CONF_NAME=$$(CONF_NAME).) |
|
209 |
$$(info Available configurations in $$(build_dir):) |
|
210 |
$$(foreach var, $$(all_confs), $$(info * $$(var))) |
|
211 |
$$(error Cannot continue) |
|
212 |
else ifneq ($$(words $$(matching_conf)), 1) |
|
213 |
$$(info Error: Matching more than one configuration CONF_NAME=$$(CONF_NAME).) |
|
214 |
$$(info Available configurations in $$(build_dir):) |
|
215 |
$$(foreach var, $$(all_confs), $$(info * $$(var))) |
|
216 |
$$(error Cannot continue) |
|
217 |
else |
|
218 |
$$(info Building configuration '$$(matching_conf)' (matching CONF_NAME=$$(CONF_NAME))) |
|
219 |
endif |
|
220 |
# Create a SPEC definition. This will contain the path to exactly one spec file. |
|
221 |
SPECS := $$(build_dir)/$$(matching_conf)/spec.gmk |
|
222 |
else ifneq ($$(origin CONF), undefined) |
|
20363 | 223 |
# User have given a CONF= argument. |
224 |
ifeq ($$(CONF),) |
|
225 |
# If given CONF=, match all configurations |
|
29662 | 226 |
matching_confs := $$(strip $$(all_confs)) |
20363 | 227 |
else |
228 |
# Otherwise select those that contain the given CONF string |
|
29788 | 229 |
matching_confs := $$(strip $$(foreach var, $$(all_confs), \ |
230 |
$$(if $$(findstring $$(CONF), $$(var)), $$(var)))) |
|
20363 | 231 |
endif |
232 |
ifeq ($$(matching_confs),) |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
233 |
$$(info Error: No configurations found matching CONF=$$(CONF).) |
29662 | 234 |
$$(info Available configurations in $$(build_dir):) |
235 |
$$(foreach var, $$(all_confs), $$(info * $$(var))) |
|
236 |
$$(error Cannot continue) |
|
20363 | 237 |
else |
29662 | 238 |
ifeq ($$(words $$(matching_confs)), 1) |
239 |
$$(info Building configuration '$$(matching_confs)' (matching CONF=$$(CONF))) |
|
20363 | 240 |
else |
29662 | 241 |
$$(info Building these configurations (matching CONF=$$(CONF)):) |
242 |
$$(foreach var, $$(matching_confs), $$(info * $$(var))) |
|
20363 | 243 |
endif |
244 |
endif |
|
14111 | 245 |
|
20363 | 246 |
# Create a SPEC definition. This will contain the path to one or more spec.gmk files. |
29662 | 247 |
SPECS := $$(addsuffix /spec.gmk, $$(addprefix $$(build_dir)/, $$(matching_confs))) |
20363 | 248 |
else |
249 |
# No CONF or SPEC given, check the available configurations |
|
29662 | 250 |
ifneq ($$(words $$(all_spec_files)), 1) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
251 |
$$(info Error: No CONF given, but more than one configuration found.) |
29662 | 252 |
$$(info Available configurations in $$(build_dir):) |
253 |
$$(foreach var, $$(all_confs), $$(info * $$(var))) |
|
254 |
$$(info Please retry building with CONF=<config pattern> (or SPEC=<spec file>).) |
|
255 |
$$(info ) |
|
256 |
$$(error Cannot continue) |
|
20363 | 257 |
endif |
14111 | 258 |
|
20363 | 259 |
# We found exactly one configuration, use it |
29662 | 260 |
SPECS := $$(strip $$(all_spec_files)) |
20363 | 261 |
endif |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
262 |
endif |
29662 | 263 |
endef |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29060
diff
changeset
|
264 |
|
29788 | 265 |
# Extract main targets from Main.gmk using the spec provided in $2. |
266 |
# |
|
267 |
# Param 1: FORCE = force generation of main-targets.gmk or LAZY = do not force. |
|
268 |
# Param 2: The SPEC file to use. |
|
269 |
define DefineMainTargets |
|
270 |
||
271 |
# We will start by making sure the main-targets.gmk file is removed, if |
|
272 |
# make has not been restarted. By the -include, we will trigger the |
|
273 |
# rule for generating the file (which is never there since we removed it), |
|
274 |
# thus generating it fresh, and make will restart, incrementing the restart |
|
275 |
# count. |
|
276 |
main_targets_file := $$(dir $(strip $2))make-support/main-targets.gmk |
|
277 |
||
278 |
ifeq ($$(MAKE_RESTARTS),) |
|
279 |
# Only do this if make has not been restarted, and if we do not force it. |
|
280 |
ifeq ($(strip $1), FORCE) |
|
281 |
$$(shell rm -f $$(main_targets_file)) |
|
282 |
endif |
|
283 |
endif |
|
284 |
||
285 |
$$(main_targets_file): |
|
286 |
@( cd $$(topdir) && \ |
|
287 |
$$(MAKE) $$(MAKE_LOG_FLAGS) -r -R -f $$(topdir)/make/Main.gmk \ |
|
288 |
-I $$(topdir)/make/common SPEC=$(strip $2) NO_RECIPES=true \ |
|
289 |
LOG_LEVEL=$$(LOG_LEVEL) \ |
|
290 |
create-main-targets-include ) |
|
291 |
||
292 |
# Now include main-targets.gmk. This will define ALL_MAIN_TARGETS. |
|
293 |
-include $$(main_targets_file) |
|
294 |
endef |
|
295 |
||
29662 | 296 |
define PrintConfCheckFailed |
297 |
@echo ' ' |
|
298 |
@echo "Please rerun configure! Easiest way to do this is by running" |
|
299 |
@echo "'make reconfigure'." |
|
300 |
@echo "This behavior may also be changed using CONF_CHECK=<ignore|auto>." |
|
301 |
@echo ' ' |
|
302 |
endef |
|
13697 | 303 |
|
29662 | 304 |
else # $(HAS_SPEC)=true |
305 |
############################################################################## |
|
306 |
# Helper functions for the 'main' target. These functions assume a single, |
|
29788 | 307 |
# proper and existing SPEC is included. |
29662 | 308 |
############################################################################## |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29060
diff
changeset
|
309 |
|
29662 | 310 |
include $(SRC_ROOT)/make/common/MakeBase.gmk |
27560 | 311 |
|
29662 | 312 |
# Define basic logging setup |
313 |
BUILD_LOG := $(OUTPUT_ROOT)/build.log |
|
314 |
BUILD_TRACE_LOG := $(OUTPUT_ROOT)/build-trace-time.log |
|
315 |
||
316 |
BUILD_LOG_WRAPPER := $(BASH) $(SRC_ROOT)/common/bin/logger.sh $(BUILD_LOG) |
|
27560 | 317 |
|
29662 | 318 |
# Sanity check the spec file, so it matches this source code |
319 |
define CheckSpecSanity |
|
29788 | 320 |
ifneq ($$(ACTUAL_TOPDIR), $$(TOPDIR)) |
321 |
ifneq ($$(ACTUAL_TOPDIR), $$(ORIGINAL_TOPDIR)) |
|
322 |
ifneq ($$(ACTUAL_TOPDIR), $$(CANONICAL_TOPDIR)) |
|
29663
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
323 |
$$(info Error: SPEC mismatch! Current working directory) |
29788 | 324 |
$$(info $$(ACTUAL_TOPDIR)) |
29663
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
325 |
$$(info does not match either TOPDIR, ORIGINAL_TOPDIR or CANONICAL_TOPDIR) |
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
326 |
$$(info $$(TOPDIR)) |
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
327 |
$$(info $$(ORIGINAL_TOPDIR)) |
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
328 |
$$(info $$(CANONICAL_TOPDIR)) |
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
329 |
$$(error Cannot continue) |
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
330 |
endif |
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
331 |
endif |
29662 | 332 |
endif |
333 |
endef |
|
27560 | 334 |
|
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
335 |
# Parse COMPARE_BUILD into COMPARE_BUILD_* |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
336 |
# Syntax: COMPARE_BUILD=CONF=<configure options>:PATCH=<patch file>: |
32720
7e0e586a6817
8137014: Various improvements in build infrastructure
ihse
parents:
32715
diff
changeset
|
337 |
# MAKE=<make targets>:COMP_OPTS=<compare script options>: |
7e0e586a6817
8137014: Various improvements in build infrastructure
ihse
parents:
32715
diff
changeset
|
338 |
# COMP_DIR=<compare script base dir>|<default> |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
339 |
# 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
|
340 |
# begins with "--", otherwise assume it means PATCH. |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
341 |
# 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
|
342 |
# If any value contains "+", it will be replaced by space. |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
343 |
define ParseCompareBuild |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
344 |
ifneq ($$(COMPARE_BUILD), ) |
33572 | 345 |
COMPARE_BUILD_OUTPUT_ROOT := $(TOPDIR)/build/compare-build/$(CONF_NAME) |
346 |
||
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
347 |
ifneq ($$(findstring :, $$(COMPARE_BUILD)), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
348 |
$$(foreach part, $$(subst :, , $$(COMPARE_BUILD)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
349 |
$$(if $$(filter PATCH=%, $$(part)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
350 |
$$(eval COMPARE_BUILD_PATCH=$$(strip $$(patsubst PATCH=%, %, $$(part)))) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
351 |
) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
352 |
$$(if $$(filter CONF=%, $$(part)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
353 |
$$(eval COMPARE_BUILD_CONF=$$(strip $$(subst +, , $$(patsubst CONF=%, %, $$(part))))) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
354 |
) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
355 |
$$(if $$(filter MAKE=%, $$(part)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
356 |
$$(eval COMPARE_BUILD_MAKE=$$(strip $$(subst +, , $$(patsubst MAKE=%, %, $$(part))))) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
357 |
) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
358 |
$$(if $$(filter COMP_OPTS=%, $$(part)), \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
359 |
$$(eval COMPARE_BUILD_COMP_OPTS=$$(strip $$(subst +, , $$(patsubst COMP_OPTS=%, %, $$(part))))) \ |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
360 |
) \ |
32720
7e0e586a6817
8137014: Various improvements in build infrastructure
ihse
parents:
32715
diff
changeset
|
361 |
$$(if $$(filter COMP_DIR=%, $$(part)), \ |
7e0e586a6817
8137014: Various improvements in build infrastructure
ihse
parents:
32715
diff
changeset
|
362 |
$$(eval COMPARE_BUILD_COMP_DIR=$$(strip $$(subst +, , $$(patsubst COMP_DIR=%, %, $$(part))))) \ |
7e0e586a6817
8137014: Various improvements in build infrastructure
ihse
parents:
32715
diff
changeset
|
363 |
) \ |
32715
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
364 |
) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
365 |
else |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
366 |
# 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
|
367 |
ifneq ($$(filter PATCH=%, $$(COMPARE_BUILD)), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
368 |
COMPARE_BUILD_PATCH=$$(strip $$(patsubst PATCH=%, %, $$(COMPARE_BUILD))) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
369 |
else ifneq ($$(filter CONF=%, $$(COMPARE_BUILD)), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
370 |
COMPARE_BUILD_CONF=$$(strip $$(subst +, , $$(patsubst CONF=%, %, $$(COMPARE_BUILD)))) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
371 |
else ifneq ($$(filter --%, $$(COMPARE_BUILD)), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
372 |
# Assume CONF if value begins with -- |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
373 |
COMPARE_BUILD_CONF=$$(strip $$(subst +, , $$(COMPARE_BUILD))) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
374 |
else |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
375 |
# Otherwise assume patch file |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
376 |
COMPARE_BUILD_PATCH=$$(strip $$(COMPARE_BUILD)) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
377 |
endif |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
378 |
endif |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
379 |
ifneq ($$(COMPARE_BUILD_PATCH), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
380 |
ifneq ($$(wildcard $$(TOPDIR)/$$(COMPARE_BUILD_PATCH)), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
381 |
# Assume relative path, if file exists |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
382 |
COMPARE_BUILD_PATCH := $$(wildcard $$(TOPDIR)/$$(COMPARE_BUILD_PATCH)) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
383 |
else ifeq ($$(wildcard $$(COMPARE_BUILD_PATCH)), ) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
384 |
$$(error Patch file $$(COMPARE_BUILD_PATCH) does not exist) |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
385 |
endif |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
386 |
endif |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
387 |
endif |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
388 |
endef |
4d558a41a1ec
8136695: Automatic build comparison with COMPARE_BUILD
ihse
parents:
32344
diff
changeset
|
389 |
|
33572 | 390 |
# Prepare for a comparison rebuild |
391 |
define PrepareCompareBuild |
|
392 |
$(ECHO) "Preparing for comparison rebuild" |
|
393 |
# Apply patch, if any |
|
394 |
$(if $(COMPARE_BUILD_PATCH), $(PATCH) -p1 < $(COMPARE_BUILD_PATCH)) |
|
395 |
# Move the first build away temporarily |
|
396 |
$(RM) -r $(TOPDIR)/build/.compare-build-temp |
|
397 |
$(MKDIR) -p $(TOPDIR)/build/.compare-build-temp |
|
398 |
$(MV) $(OUTPUT_ROOT) $(TOPDIR)/build/.compare-build-temp |
|
399 |
# Restore an old compare-build, or create a new compare-build directory. |
|
400 |
if test -d $(COMPARE_BUILD_OUTPUT_ROOT); then \ |
|
401 |
$(MV) $(COMPARE_BUILD_OUTPUT_ROOT) $(OUTPUT_ROOT); \ |
|
402 |
else \ |
|
403 |
$(MKDIR) -p $(OUTPUT_ROOT); \ |
|
404 |
fi |
|
405 |
# Re-run configure with the same arguments (and possibly some additional), |
|
406 |
# must be done after patching. |
|
407 |
( cd $(OUTPUT_ROOT) && PATH="$(ORIGINAL_PATH)" \ |
|
408 |
$(BASH) $(TOPDIR)/configure $(CONFIGURE_COMMAND_LINE) $(COMPARE_BUILD_CONF)) |
|
409 |
endef |
|
410 |
||
411 |
# Cleanup after a compare build |
|
412 |
define CleanupCompareBuild |
|
413 |
# If running with a COMPARE_BUILD patch, reverse-apply it |
|
414 |
$(if $(COMPARE_BUILD_PATCH), $(PATCH) -R -p1 < $(COMPARE_BUILD_PATCH)) |
|
415 |
# Move this build away and restore the original build |
|
416 |
$(MKDIR) -p $(TOPDIR)/build/compare-build |
|
417 |
$(MV) $(OUTPUT_ROOT) $(COMPARE_BUILD_OUTPUT_ROOT) |
|
418 |
$(MV) $(TOPDIR)/build/.compare-build-temp/$(CONF_NAME) $(OUTPUT_ROOT) |
|
419 |
$(RM) -r $(TOPDIR)/build/.compare-build-temp |
|
420 |
endef |
|
421 |
||
422 |
# Do the actual comparison of two builds |
|
423 |
define CompareBuildDoComparison |
|
424 |
# Compare first and second build. Ignore any error code from compare.sh. |
|
425 |
$(ECHO) "Comparing between comparison rebuild (this/new) and baseline (other/old)" |
|
426 |
$(if $(COMPARE_BUILD_COMP_DIR), \ |
|
427 |
+(cd $(COMPARE_BUILD_OUTPUT_ROOT) && ./compare.sh $(COMPARE_BUILD_COMP_OPTS) \ |
|
428 |
-2dirs $(COMPARE_BUILD_OUTPUT_ROOT)/$(COMPARE_BUILD_COMP_DIR) $(OUTPUT_ROOT)/$(COMPARE_BUILD_COMP_DIR) || true), \ |
|
429 |
+(cd $(COMPARE_BUILD_OUTPUT_ROOT) && ./compare.sh $(COMPARE_BUILD_COMP_OPTS) \ |
|
430 |
-o $(OUTPUT_ROOT) || true) \ |
|
431 |
) |
|
432 |
endef |
|
433 |
||
434 |
define PrintFailureReports |
|
435 |
$(if $(wildcard $(MAKESUPPORT_OUTPUTDIR)/failure-logs/*), \ |
|
436 |
$(PRINTF) "=== Output from failing command(s) repeated here ===\n" $(NEWLINE) \ |
|
437 |
$(foreach logfile, $(sort $(wildcard $(MAKESUPPORT_OUTPUTDIR)/failure-logs/*)), \ |
|
438 |
$(PRINTF) "* For target $(notdir $(basename $(logfile))):\n" $(NEWLINE) \ |
|
439 |
$(CAT) $(logfile) | $(GREP) -v -e "^Note: including file:" $(NEWLINE) \ |
|
440 |
) \ |
|
441 |
$(PRINTF) "=== End of repeated output ===\n" \ |
|
442 |
) |
|
443 |
endef |
|
444 |
||
445 |
define PrintBuildLogFailures |
|
446 |
if $(GREP) -q "recipe for target .* failed" $(BUILD_LOG) 2> /dev/null; then \ |
|
447 |
$(PRINTF) "=== Make failure sequence repeated here ===\n" ; \ |
|
448 |
$(GREP) "recipe for target .* failed" $(BUILD_LOG) ; \ |
|
449 |
$(PRINTF) "=== End of repeated output ===\n" ; \ |
|
450 |
$(PRINTF) "Hint: Try searching the build log for the name of the first failed target.\n" ; \ |
|
451 |
else \ |
|
452 |
$(PRINTF) "No indication of failed target found.\n" ; \ |
|
453 |
$(PRINTF) "Hint: Try searching the build log for '] Error'.\n" ; \ |
|
454 |
fi |
|
455 |
endef |
|
456 |
||
29662 | 457 |
define RotateLogFiles |
458 |
$(RM) $(BUILD_LOG).old 2> /dev/null |
|
459 |
$(MV) $(BUILD_LOG) $(BUILD_LOG).old 2> /dev/null || true |
|
460 |
$(if $(findstring trace, $(LOG_LEVEL)), \ |
|
461 |
$(RM) $(BUILD_TRACE_LOG).old 2> /dev/null && \ |
|
462 |
$(MV) $(BUILD_TRACE_LOG) $(BUILD_TRACE_LOG).old 2> /dev/null || true \ |
|
463 |
) |
|
464 |
endef |
|
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
25854
diff
changeset
|
465 |
|
32344
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
29788
diff
changeset
|
466 |
define PrepareFailureLogs |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
29788
diff
changeset
|
467 |
$(RM) -r $(MAKESUPPORT_OUTPUTDIR)/failure-logs 2> /dev/null |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
29788
diff
changeset
|
468 |
$(MKDIR) -p $(MAKESUPPORT_OUTPUTDIR)/failure-logs |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
29788
diff
changeset
|
469 |
endef |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
29788
diff
changeset
|
470 |
|
29662 | 471 |
# Remove any javac server logs and port files. This |
472 |
# prevents a new make run to reuse the previous servers. |
|
473 |
define PrepareSmartJavac |
|
474 |
$(if $(SJAVAC_SERVER_DIR), \ |
|
475 |
$(RM) -r $(SJAVAC_SERVER_DIR) 2> /dev/null && \ |
|
476 |
$(MKDIR) -p $(SJAVAC_SERVER_DIR) \ |
|
477 |
) |
|
478 |
endef |
|
27560 | 479 |
|
29662 | 480 |
define CleanupSmartJavac |
481 |
[ -f $(SJAVAC_SERVER_DIR)/server.port ] && $(ECHO) Stopping sjavac server && \ |
|
482 |
$(TOUCH) $(SJAVAC_SERVER_DIR)/server.port.stop; true |
|
483 |
endef |
|
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
25854
diff
changeset
|
484 |
|
29662 | 485 |
define StartGlobalTimer |
486 |
$(RM) -r $(BUILDTIMESDIR) 2> /dev/null |
|
487 |
$(MKDIR) -p $(BUILDTIMESDIR) |
|
488 |
$(call RecordStartTime,TOTAL) |
|
489 |
endef |
|
27560 | 490 |
|
29662 | 491 |
define StopGlobalTimer |
492 |
$(call RecordEndTime,TOTAL) |
|
493 |
endef |
|
27560 | 494 |
|
29662 | 495 |
# Find all build_time_* files and print their contents in a list sorted |
496 |
# on the name of the sub repository. |
|
497 |
define ReportBuildTimes |
|
498 |
$(BUILD_LOG_WRAPPER) $(PRINTF) $(LOG_INFO) -- \ |
|
499 |
"----- Build times -------\nStart %s\nEnd %s\n%s\n%s\n-------------------------\n" \ |
|
500 |
"`$(CAT) $(BUILDTIMESDIR)/build_time_start_TOTAL_human_readable`" \ |
|
501 |
"`$(CAT) $(BUILDTIMESDIR)/build_time_end_TOTAL_human_readable`" \ |
|
502 |
"`$(LS) $(BUILDTIMESDIR)/build_time_diff_* | $(GREP) -v _TOTAL | \ |
|
503 |
$(XARGS) $(CAT) | $(SORT) -k 2`" \ |
|
504 |
"`$(CAT) $(BUILDTIMESDIR)/build_time_diff_TOTAL`" |
|
505 |
endef |
|
27560 | 506 |
|
29662 | 507 |
endif # HAS_SPEC |
27560 | 508 |
|
29662 | 509 |
endif # _INITSUPPORT_GMK |