author | smarks |
Tue, 04 Aug 2015 14:45:38 -0700 | |
changeset 32017 | f58d32041dd8 |
parent 29788 | b581a3d9db41 |
child 32344 | 0b288e0efcfa |
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 |
43 |
INIT_CONTROL_VARIABLES := LOG CONF SPEC JOBS CONF_CHECK |
|
14111 | 44 |
|
29662 | 45 |
# All known make control variables |
46 |
MAKE_CONTROL_VARIABLES := $(INIT_CONTROL_VARIABLES) TEST JDK_FILTER |
|
14111 | 47 |
|
29662 | 48 |
# Define a simple reverse function. |
49 |
# Should maybe move to MakeBase.gmk, but we can't include that file now. |
|
50 |
reverse = \ |
|
51 |
$(if $(strip $(1)), $(call reverse, $(wordlist 2, $(words $(1)), $(1)))) \ |
|
52 |
$(firstword $(1)) |
|
14111 | 53 |
|
29662 | 54 |
# The variable MAKEOVERRIDES contains variable assignments from the command |
55 |
# line, but in reverse order to what the user entered. |
|
56 |
COMMAND_LINE_VARIABLES := $(subst \#,\ , $(call reverse, $(subst \ ,\#,$(MAKEOVERRIDES)))) |
|
57 |
||
29788 | 58 |
# A list like FOO="val1" BAR="val2" containing all user-supplied make |
59 |
# variables that we should propagate. |
|
29662 | 60 |
USER_MAKE_VARS := $(filter-out $(addsuffix =%, $(INIT_CONTROL_VARIABLES)), \ |
61 |
$(MAKEOVERRIDES)) |
|
14111 | 62 |
|
29788 | 63 |
# Setup information about available configurations, if any. |
64 |
build_dir=$(topdir)/build |
|
65 |
all_spec_files=$(wildcard $(build_dir)/*/spec.gmk) |
|
66 |
# Extract the configuration names from the path |
|
67 |
all_confs=$(patsubst %/spec.gmk, %, $(patsubst $(build_dir)/%, %, $(all_spec_files))) |
|
68 |
||
29662 | 69 |
# Check for unknown command-line variables |
70 |
define CheckControlVariables |
|
71 |
command_line_variables := $$(strip $$(foreach var, \ |
|
72 |
$$(subst \ ,_,$$(MAKEOVERRIDES)), \ |
|
73 |
$$(firstword $$(subst =, , $$(var))))) |
|
29788 | 74 |
unknown_command_line_variables := $$(strip \ |
75 |
$$(filter-out $$(MAKE_CONTROL_VARIABLES), $$(command_line_variables))) |
|
29662 | 76 |
ifneq ($$(unknown_command_line_variables), ) |
77 |
$$(info Note: Command line contains non-control variables:) |
|
78 |
$$(foreach var, $$(unknown_command_line_variables), $$(info * $$(var)=$$($$(var)))) |
|
79 |
$$(info Make sure it is not mistyped, and that you intend to override this variable.) |
|
80 |
$$(info 'make help' will list known control variables.) |
|
81 |
$$(info ) |
|
82 |
endif |
|
83 |
endef |
|
14111 | 84 |
|
29662 | 85 |
# Check for deprecated ALT_ variables |
86 |
define CheckDeprecatedEnvironment |
|
87 |
defined_alt_variables := $$(filter ALT_%, $$(.VARIABLES)) |
|
88 |
ifneq ($$(defined_alt_variables), ) |
|
89 |
$$(info Warning: You have the following ALT_ variables set:) |
|
90 |
$$(foreach var, $$(defined_alt_variables), $$(info * $$(var)=$$($$(var)))) |
|
91 |
$$(info ALT_ variables are deprecated, and may result in a failed build.) |
|
92 |
$$(info Please clean your environment.) |
|
93 |
$$(info ) |
|
94 |
endif |
|
95 |
endef |
|
14111 | 96 |
|
29662 | 97 |
# Check for invalid make flags like -j |
98 |
define CheckInvalidMakeFlags |
|
99 |
# This is a trick to get this rule to execute before any other rules |
|
100 |
# MAKEFLAGS only indicate -j if read in a recipe (!) |
|
101 |
$$(topdir)/make/Init.gmk: .FORCE |
|
102 |
$$(if $$(findstring --jobserver, $$(MAKEFLAGS)), \ |
|
103 |
$$(info Error: 'make -jN' is not supported, use 'make JOBS=N') \ |
|
104 |
$$(error Cannot continue) \ |
|
105 |
) |
|
106 |
.FORCE: |
|
107 |
.PHONY: .FORCE |
|
108 |
endef |
|
14111 | 109 |
|
29662 | 110 |
# Check that the CONF_CHECK option is valid and set up handling |
111 |
define ParseConfCheckOption |
|
112 |
ifeq ($$(CONF_CHECK), ) |
|
113 |
# Default behavior is fail |
|
114 |
CONF_CHECK := fail |
|
115 |
else ifneq ($$(filter-out auto fail ignore, $$(CONF_CHECK)),) |
|
116 |
$$(info Error: CONF_CHECK must be one of: auto, fail or ignore.) |
|
117 |
$$(error Cannot continue) |
|
118 |
endif |
|
119 |
endef |
|
14111 | 120 |
|
29662 | 121 |
define ParseLogLevel |
122 |
# Catch old-style VERBOSE= command lines. |
|
123 |
ifneq ($$(origin VERBOSE), undefined) |
|
124 |
$$(info Error: VERBOSE is deprecated. Use LOG=<warn|info|debug|trace> instead.) |
|
125 |
$$(error Cannot continue) |
|
126 |
endif |
|
14111 | 127 |
|
29662 | 128 |
# Setup logging according to LOG |
14379
b449aa34783e
8003274: build-infra: Makefile changes needed for sjavac
tbell
parents:
14111
diff
changeset
|
129 |
|
20363 | 130 |
# If the "nofile" argument is given, act on it and strip it away |
29662 | 131 |
ifneq ($$(findstring nofile, $$(LOG)),) |
132 |
LOG_NOFILE := true |
|
20363 | 133 |
# COMMA is defined in spec.gmk, but that is not included yet |
29662 | 134 |
COMMA := , |
135 |
# First try to remove ",nofile" if it exists, otherwise just remove "nofile" |
|
136 |
LOG_STRIPPED := $$(subst nofile,, $$(subst $$(COMMA)nofile,, $$(LOG))) |
|
20363 | 137 |
# We might have ended up with a leading comma. Remove it |
29662 | 138 |
LOG_LEVEL := $$(strip $$(patsubst $$(COMMA)%, %, $$(LOG_STRIPPED))) |
20363 | 139 |
else |
29662 | 140 |
LOG_LEVEL := $$(LOG) |
20363 | 141 |
endif |
13697 | 142 |
|
20363 | 143 |
ifeq ($$(LOG_LEVEL),) |
29662 | 144 |
# Set LOG to "warn" as default if not set |
145 |
LOG_LEVEL := warn |
|
20363 | 146 |
endif |
29662 | 147 |
|
148 |
ifeq ($$(LOG_LEVEL), warn) |
|
149 |
MAKE_LOG_FLAGS := -s |
|
150 |
else ifeq ($$(LOG_LEVEL), info) |
|
151 |
MAKE_LOG_FLAGS := -s |
|
152 |
else ifeq ($$(LOG_LEVEL), debug) |
|
153 |
MAKE_LOG_FLAGS := |
|
154 |
else ifeq ($$(LOG_LEVEL), trace) |
|
155 |
MAKE_LOG_FLAGS := -d |
|
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
156 |
else |
20363 | 157 |
$$(info Error: LOG must be one of: warn, info, debug or trace.) |
29662 | 158 |
$$(error Cannot continue) |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
159 |
endif |
29662 | 160 |
endef |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
161 |
|
29662 | 162 |
define ParseConfAndSpec |
163 |
ifneq ($$(origin SPEC), undefined) |
|
20363 | 164 |
# We have been given a SPEC, check that it works out properly |
29662 | 165 |
ifneq ($$(origin CONF), undefined) |
166 |
# We also have a CONF argument. We can't have both. |
|
167 |
$$(info Error: Cannot use CONF=$$(CONF) and SPEC=$$(SPEC) at the same time. Choose one.) |
|
168 |
$$(error Cannot continue) |
|
20363 | 169 |
endif |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
170 |
ifeq ($$(wildcard $$(SPEC)),) |
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
171 |
$$(info Error: Cannot locate spec.gmk, given by SPEC=$$(SPEC).) |
29662 | 172 |
$$(error Cannot continue) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
173 |
endif |
29662 | 174 |
ifeq ($$(filter /%, $$(SPEC)),) |
175 |
# If given with relative path, make it absolute |
|
176 |
SPECS := $$(CURDIR)/$$(strip $$(SPEC)) |
|
177 |
else |
|
178 |
SPECS := $$(SPEC) |
|
179 |
endif |
|
180 |
||
181 |
# For now, unset this SPEC variable. |
|
182 |
override SPEC := |
|
20363 | 183 |
else |
29662 | 184 |
# Use spec.gmk files in the build output directory |
29788 | 185 |
ifeq ($$(all_spec_files),) |
29662 | 186 |
$$(info Error: No configurations found for $$(topdir).) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
187 |
$$(info Please run 'bash configure' to create a configuration.) |
29662 | 188 |
$$(info ) |
189 |
$$(error Cannot continue) |
|
20363 | 190 |
endif |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
191 |
|
29662 | 192 |
ifneq ($$(origin CONF), undefined) |
20363 | 193 |
# User have given a CONF= argument. |
194 |
ifeq ($$(CONF),) |
|
195 |
# If given CONF=, match all configurations |
|
29662 | 196 |
matching_confs := $$(strip $$(all_confs)) |
20363 | 197 |
else |
198 |
# Otherwise select those that contain the given CONF string |
|
29788 | 199 |
matching_confs := $$(strip $$(foreach var, $$(all_confs), \ |
200 |
$$(if $$(findstring $$(CONF), $$(var)), $$(var)))) |
|
20363 | 201 |
endif |
202 |
ifeq ($$(matching_confs),) |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
203 |
$$(info Error: No configurations found matching CONF=$$(CONF).) |
29662 | 204 |
$$(info Available configurations in $$(build_dir):) |
205 |
$$(foreach var, $$(all_confs), $$(info * $$(var))) |
|
206 |
$$(error Cannot continue) |
|
20363 | 207 |
else |
29662 | 208 |
ifeq ($$(words $$(matching_confs)), 1) |
209 |
$$(info Building configuration '$$(matching_confs)' (matching CONF=$$(CONF))) |
|
20363 | 210 |
else |
29662 | 211 |
$$(info Building these configurations (matching CONF=$$(CONF)):) |
212 |
$$(foreach var, $$(matching_confs), $$(info * $$(var))) |
|
20363 | 213 |
endif |
214 |
endif |
|
14111 | 215 |
|
20363 | 216 |
# Create a SPEC definition. This will contain the path to one or more spec.gmk files. |
29662 | 217 |
SPECS := $$(addsuffix /spec.gmk, $$(addprefix $$(build_dir)/, $$(matching_confs))) |
20363 | 218 |
else |
219 |
# No CONF or SPEC given, check the available configurations |
|
29662 | 220 |
ifneq ($$(words $$(all_spec_files)), 1) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27000
diff
changeset
|
221 |
$$(info Error: No CONF given, but more than one configuration found.) |
29662 | 222 |
$$(info Available configurations in $$(build_dir):) |
223 |
$$(foreach var, $$(all_confs), $$(info * $$(var))) |
|
224 |
$$(info Please retry building with CONF=<config pattern> (or SPEC=<spec file>).) |
|
225 |
$$(info ) |
|
226 |
$$(error Cannot continue) |
|
20363 | 227 |
endif |
14111 | 228 |
|
20363 | 229 |
# We found exactly one configuration, use it |
29662 | 230 |
SPECS := $$(strip $$(all_spec_files)) |
20363 | 231 |
endif |
13133
701e61c32ece
7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff
changeset
|
232 |
endif |
29662 | 233 |
endef |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29060
diff
changeset
|
234 |
|
29788 | 235 |
# Extract main targets from Main.gmk using the spec provided in $2. |
236 |
# |
|
237 |
# Param 1: FORCE = force generation of main-targets.gmk or LAZY = do not force. |
|
238 |
# Param 2: The SPEC file to use. |
|
239 |
define DefineMainTargets |
|
240 |
||
241 |
# We will start by making sure the main-targets.gmk file is removed, if |
|
242 |
# make has not been restarted. By the -include, we will trigger the |
|
243 |
# rule for generating the file (which is never there since we removed it), |
|
244 |
# thus generating it fresh, and make will restart, incrementing the restart |
|
245 |
# count. |
|
246 |
main_targets_file := $$(dir $(strip $2))make-support/main-targets.gmk |
|
247 |
||
248 |
ifeq ($$(MAKE_RESTARTS),) |
|
249 |
# Only do this if make has not been restarted, and if we do not force it. |
|
250 |
ifeq ($(strip $1), FORCE) |
|
251 |
$$(shell rm -f $$(main_targets_file)) |
|
252 |
endif |
|
253 |
endif |
|
254 |
||
255 |
$$(main_targets_file): |
|
256 |
@( cd $$(topdir) && \ |
|
257 |
$$(MAKE) $$(MAKE_LOG_FLAGS) -r -R -f $$(topdir)/make/Main.gmk \ |
|
258 |
-I $$(topdir)/make/common SPEC=$(strip $2) NO_RECIPES=true \ |
|
259 |
LOG_LEVEL=$$(LOG_LEVEL) \ |
|
260 |
create-main-targets-include ) |
|
261 |
||
262 |
# Now include main-targets.gmk. This will define ALL_MAIN_TARGETS. |
|
263 |
-include $$(main_targets_file) |
|
264 |
endef |
|
265 |
||
29662 | 266 |
define PrintConfCheckFailed |
267 |
@echo ' ' |
|
268 |
@echo "Please rerun configure! Easiest way to do this is by running" |
|
269 |
@echo "'make reconfigure'." |
|
270 |
@echo "This behavior may also be changed using CONF_CHECK=<ignore|auto>." |
|
271 |
@echo ' ' |
|
272 |
endef |
|
13697 | 273 |
|
29662 | 274 |
else # $(HAS_SPEC)=true |
275 |
############################################################################## |
|
276 |
# Helper functions for the 'main' target. These functions assume a single, |
|
29788 | 277 |
# proper and existing SPEC is included. |
29662 | 278 |
############################################################################## |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
29060
diff
changeset
|
279 |
|
29662 | 280 |
include $(SRC_ROOT)/make/common/MakeBase.gmk |
27560 | 281 |
|
29662 | 282 |
# Define basic logging setup |
283 |
BUILD_LOG := $(OUTPUT_ROOT)/build.log |
|
284 |
BUILD_TRACE_LOG := $(OUTPUT_ROOT)/build-trace-time.log |
|
285 |
||
286 |
BUILD_LOG_WRAPPER := $(BASH) $(SRC_ROOT)/common/bin/logger.sh $(BUILD_LOG) |
|
27560 | 287 |
|
29662 | 288 |
# Disable the build log wrapper on sjavac+windows until |
289 |
# we have solved how to prevent the log wrapper to wait |
|
290 |
# for the background sjavac server process. |
|
291 |
ifeq ($(ENABLE_SJAVAC)X$(OPENJDK_BUILD_OS),yesXwindows) |
|
292 |
LOG_NOFILE := true |
|
293 |
endif |
|
27560 | 294 |
|
29662 | 295 |
# Sanity check the spec file, so it matches this source code |
296 |
define CheckSpecSanity |
|
29788 | 297 |
ifneq ($$(ACTUAL_TOPDIR), $$(TOPDIR)) |
298 |
ifneq ($$(ACTUAL_TOPDIR), $$(ORIGINAL_TOPDIR)) |
|
299 |
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
|
300 |
$$(info Error: SPEC mismatch! Current working directory) |
29788 | 301 |
$$(info $$(ACTUAL_TOPDIR)) |
29663
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
302 |
$$(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
|
303 |
$$(info $$(TOPDIR)) |
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
304 |
$$(info $$(ORIGINAL_TOPDIR)) |
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
305 |
$$(info $$(CANONICAL_TOPDIR)) |
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
306 |
$$(error Cannot continue) |
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
307 |
endif |
74ff65003536
8076123: 9-dev build fail: make/Init.gmk:142: *** multiple target patterns. Stop.
erikj
parents:
29662
diff
changeset
|
308 |
endif |
29662 | 309 |
endif |
310 |
endef |
|
27560 | 311 |
|
29662 | 312 |
define RotateLogFiles |
313 |
$(RM) $(BUILD_LOG).old 2> /dev/null |
|
314 |
$(MV) $(BUILD_LOG) $(BUILD_LOG).old 2> /dev/null || true |
|
315 |
$(if $(findstring trace, $(LOG_LEVEL)), \ |
|
316 |
$(RM) $(BUILD_TRACE_LOG).old 2> /dev/null && \ |
|
317 |
$(MV) $(BUILD_TRACE_LOG) $(BUILD_TRACE_LOG).old 2> /dev/null || true \ |
|
318 |
) |
|
319 |
endef |
|
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
25854
diff
changeset
|
320 |
|
29662 | 321 |
# Remove any javac server logs and port files. This |
322 |
# prevents a new make run to reuse the previous servers. |
|
323 |
define PrepareSmartJavac |
|
324 |
$(if $(SJAVAC_SERVER_DIR), \ |
|
325 |
$(RM) -r $(SJAVAC_SERVER_DIR) 2> /dev/null && \ |
|
326 |
$(MKDIR) -p $(SJAVAC_SERVER_DIR) \ |
|
327 |
) |
|
328 |
endef |
|
27560 | 329 |
|
29662 | 330 |
define CleanupSmartJavac |
331 |
[ -f $(SJAVAC_SERVER_DIR)/server.port ] && $(ECHO) Stopping sjavac server && \ |
|
332 |
$(TOUCH) $(SJAVAC_SERVER_DIR)/server.port.stop; true |
|
333 |
endef |
|
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
25854
diff
changeset
|
334 |
|
29662 | 335 |
define StartGlobalTimer |
336 |
$(RM) -r $(BUILDTIMESDIR) 2> /dev/null |
|
337 |
$(MKDIR) -p $(BUILDTIMESDIR) |
|
338 |
$(call RecordStartTime,TOTAL) |
|
339 |
endef |
|
27560 | 340 |
|
29662 | 341 |
define StopGlobalTimer |
342 |
$(call RecordEndTime,TOTAL) |
|
343 |
endef |
|
27560 | 344 |
|
29662 | 345 |
# Find all build_time_* files and print their contents in a list sorted |
346 |
# on the name of the sub repository. |
|
347 |
define ReportBuildTimes |
|
348 |
$(BUILD_LOG_WRAPPER) $(PRINTF) $(LOG_INFO) -- \ |
|
349 |
"----- Build times -------\nStart %s\nEnd %s\n%s\n%s\n-------------------------\n" \ |
|
350 |
"`$(CAT) $(BUILDTIMESDIR)/build_time_start_TOTAL_human_readable`" \ |
|
351 |
"`$(CAT) $(BUILDTIMESDIR)/build_time_end_TOTAL_human_readable`" \ |
|
352 |
"`$(LS) $(BUILDTIMESDIR)/build_time_diff_* | $(GREP) -v _TOTAL | \ |
|
353 |
$(XARGS) $(CAT) | $(SORT) -k 2`" \ |
|
354 |
"`$(CAT) $(BUILDTIMESDIR)/build_time_diff_TOTAL`" |
|
355 |
endef |
|
27560 | 356 |
|
29662 | 357 |
endif # HAS_SPEC |
27560 | 358 |
|
29662 | 359 |
endif # _INITSUPPORT_GMK |