author | ysuenaga |
Fri, 11 Dec 2015 21:58:28 +0900 | |
changeset 34493 | c68e0ab807d8 |
parent 33394 | dbd286b8742f |
child 34596 | e8328ce5b64e |
permissions | -rw-r--r-- |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
2 |
# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
26 |
################################################################ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
27 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
28 |
# Setup common utility functions. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
29 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
30 |
################################################################ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
31 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
32 |
ifndef _MAKEBASE_GMK |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
33 |
_MAKEBASE_GMK := 1 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
34 |
|
29662 | 35 |
ifeq ($(wildcard $(SPEC)),) |
36 |
$(error MakeBase.gmk needs SPEC set to a proper spec.gmk) |
|
37 |
endif |
|
38 |
||
29861 | 39 |
# By defining this pseudo target, make will automatically remove targets |
40 |
# if their recipe fails so that a rebuild is automatically triggered on the |
|
41 |
# next make invocation. |
|
42 |
.DELETE_ON_ERROR: |
|
29662 | 43 |
|
32460
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
44 |
################################################################################ |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
45 |
# Definitions for special characters |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
46 |
################################################################################ |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
47 |
|
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
48 |
# When calling macros, the spaces between arguments are |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
49 |
# often semantically important! Sometimes we need to subst |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
50 |
# spaces and commas, therefore we need the following macros. |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
51 |
X:= |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
52 |
SPACE:=$(X) $(X) |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
53 |
COMMA:=, |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
54 |
DOLLAR:=$$ |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
55 |
HASH:=\# |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
56 |
LEFT_PAREN:=( |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
57 |
RIGHT_PAREN:=) |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
58 |
SQUOTE:=' |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
59 |
#' |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
60 |
DQUOTE:=" |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
61 |
#" |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
62 |
define NEWLINE |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
63 |
|
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
64 |
|
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
65 |
endef |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
66 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
67 |
# In GNU Make 4.0 and higher, there is a file function for writing to files. |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
68 |
ifeq (4.0, $(firstword $(sort 4.0 $(MAKE_VERSION)))) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
69 |
HAS_FILE_FUNCTION := true |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
70 |
endif |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
71 |
|
29662 | 72 |
############################## |
73 |
# Functions |
|
74 |
############################## |
|
75 |
||
30095
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
76 |
### Debug functions |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
77 |
|
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
78 |
# Prints the name and value of a variable |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
79 |
PrintVar = \ |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
80 |
$(info $(strip $1) >$($(strip $1))<) |
29662 | 81 |
|
82 |
### Functions for timers |
|
83 |
||
84 |
# Store the build times in this directory. |
|
85 |
BUILDTIMESDIR=$(OUTPUT_ROOT)/make-support/build-times |
|
86 |
||
87 |
# Record starting time for build of a sub repository. |
|
88 |
define RecordStartTime |
|
89 |
$(MKDIR) -p $(BUILDTIMESDIR) |
|
90 |
$(DATE) '+%Y %m %d %H %M %S' | $(NAWK) '{ print $$1,$$2,$$3,$$4,$$5,$$6,($$4*3600+$$5*60+$$6) }' > $(BUILDTIMESDIR)/build_time_start_$(strip $1) |
|
91 |
$(DATE) '+%Y-%m-%d %H:%M:%S' > $(BUILDTIMESDIR)/build_time_start_$(strip $1)_human_readable |
|
92 |
endef |
|
93 |
||
94 |
# Record ending time and calculate the difference and store it in a |
|
95 |
# easy to read format. Handles builds that cross midnight. Expects |
|
96 |
# that a build will never take 24 hours or more. |
|
97 |
define RecordEndTime |
|
98 |
$(DATE) '+%Y %m %d %H %M %S' | $(NAWK) '{ print $$1,$$2,$$3,$$4,$$5,$$6,($$4*3600+$$5*60+$$6) }' > $(BUILDTIMESDIR)/build_time_end_$(strip $1) |
|
99 |
$(DATE) '+%Y-%m-%d %H:%M:%S' > $(BUILDTIMESDIR)/build_time_end_$(strip $1)_human_readable |
|
100 |
$(ECHO) `$(CAT) $(BUILDTIMESDIR)/build_time_start_$(strip $1)` `$(CAT) $(BUILDTIMESDIR)/build_time_end_$(strip $1)` $1 | \ |
|
101 |
$(NAWK) '{ F=$$7; T=$$14; if (F > T) { T+=3600*24 }; D=T-F; H=int(D/3600); \ |
|
102 |
M=int((D-H*3600)/60); S=D-H*3600-M*60; printf("%02d:%02d:%02d %s\n",H,M,S,$$15); }' \ |
|
103 |
> $(BUILDTIMESDIR)/build_time_diff_$(strip $1) |
|
104 |
endef |
|
105 |
||
106 |
# Hook to be called when starting to execute a top-level target |
|
107 |
define TargetEnter |
|
108 |
$(PRINTF) "## Starting $(patsubst %-only,%,$@)\n" |
|
109 |
$(call RecordStartTime,$(patsubst %-only,%,$@)) |
|
110 |
endef |
|
111 |
||
112 |
# Hook to be called when finish executing a top-level target |
|
113 |
define TargetExit |
|
114 |
$(call RecordEndTime,$(patsubst %-only,%,$@)) |
|
115 |
$(PRINTF) "## Finished $(patsubst %-only,%,$@) (build time %s)\n\n" \ |
|
116 |
"`$(CAT) $(BUILDTIMESDIR)/build_time_diff_$(patsubst %-only,%,$@) | $(CUT) -f 1 -d ' '`" |
|
117 |
endef |
|
118 |
||
25854 | 119 |
################################################################################ |
120 |
# This macro translates $ into \$ to protect the $ from expansion in the shell. |
|
121 |
# To make this macro resilient against already escaped strings, first remove |
|
122 |
# any present escapes before escaping so that no double escapes are added. |
|
123 |
EscapeDollar = $(subst $$,\$$,$(subst \$$,$$,$(strip $1))) |
|
124 |
||
125 |
################################################################################ |
|
126 |
# This macro translates $ into $$ to protect the string from make itself. |
|
127 |
DoubleDollar = $(subst $$,$$$$,$(strip $1)) |
|
128 |
||
129 |
################################################################################ |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
130 |
# ListPathsSafely can be used to print command parameters to a file. This is |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
131 |
# typically done if the command line lenght risk being too long for the |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
132 |
# OS/shell. In later make versions, the file function can be used for this |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
133 |
# purpose. For earlier versions, a more complex implementation is provided. |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
134 |
# |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
135 |
# The function ListPathsSafely can be called either directly or, more commonly |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
136 |
# from a recipe line. If called from a recipe, it will be executed in the |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
137 |
# evaluation phase of that recipe, which means that it will write to the file |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
138 |
# before any other line in the recipe has been run. |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
139 |
ifeq ($(HAS_FILE_FUNCTION), true) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
140 |
# Param 1 - Name of variable containing paths/arguments to output |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
141 |
# Param 2 - File to print to |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
142 |
# Param 3 - Set to true to append to file instead of overwriting |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
143 |
define ListPathsSafely |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
144 |
$$(call MakeDir, $$(dir $$(strip $2))) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
145 |
$$(file $$(if $$(filter true, $$(strip $3)),>>,>) \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
146 |
$$(strip $2),$$(subst $$(SPACE),$$(NEWLINE),$$(strip $$($$(strip $1))))) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
147 |
endef |
25854 | 148 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
149 |
else # HAS_FILE_FUNCTION |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
150 |
|
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
151 |
$(eval compress_paths = \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
152 |
$(strip $(shell $(CAT) $(SRC_ROOT)/make/common/support/ListPathsSafely-pre-compress.incl))) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
153 |
compress_paths += \ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
154 |
$(subst $(SRC_ROOT),X97,\ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
155 |
$(subst $(OUTPUT_ROOT),X98,\ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
156 |
$(subst X,X00,\ |
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
157 |
$(subst $(SPACE),\n,$(strip $1))))) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
158 |
$(eval compress_paths += \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
159 |
$(strip $(shell $(CAT) $(SRC_ROOT)/make/common/support/ListPathsSafely-post-compress.incl))) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
160 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
161 |
decompress_paths=$(SED) -f $(SRC_ROOT)/make/common/support/ListPathsSafely-uncompress.sed \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
162 |
-e 's|X99|\\n|g' \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
163 |
-e 's|X98|$(OUTPUT_ROOT)|g' -e 's|X97|$(SRC_ROOT)|g' \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
164 |
-e 's|X00|X|g' |
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
165 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
166 |
ListPathsSafely_IfPrintf = \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
167 |
$(if $(word $3,$($(strip $1))), \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
168 |
$(shell $(PRINTF) -- "$(strip $(call EscapeDollar, \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
169 |
$(call compress_paths, $(wordlist $3,$4,$($(strip $1))))))\n" \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
170 |
| $(decompress_paths) >> $2)) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
171 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
172 |
# Param 1 - Name of variable containing paths/arguments to output |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
173 |
# Param 2 - File to print to |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
174 |
# Param 3 - Set to true to append to file instead of overwriting |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
175 |
define ListPathsSafely |
20363 | 176 |
ifneq (,$$(word 10001,$$($1))) |
177 |
$$(error Cannot list safely more than 10000 paths. $1 has $$(words $$($1)) paths!) |
|
178 |
endif |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
179 |
$$(call MakeDir, $$(dir $2)) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
180 |
ifneq ($$(strip $3), true) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
181 |
$$(shell $(RM) $$(strip $2)) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
182 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
183 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
184 |
$$(call ListPathsSafely_IfPrintf,$1,$2,1,250) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
185 |
$$(call ListPathsSafely_IfPrintf,$1,$2,251,500) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
186 |
$$(call ListPathsSafely_IfPrintf,$1,$2,501,750) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
187 |
$$(call ListPathsSafely_IfPrintf,$1,$2,751,1000) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
188 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
189 |
$$(call ListPathsSafely_IfPrintf,$1,$2,1001,1250) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
190 |
$$(call ListPathsSafely_IfPrintf,$1,$2,1251,1500) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
191 |
$$(call ListPathsSafely_IfPrintf,$1,$2,1501,1750) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
192 |
$$(call ListPathsSafely_IfPrintf,$1,$2,1751,2000) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
193 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
194 |
$$(call ListPathsSafely_IfPrintf,$1,$2,2001,2250) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
195 |
$$(call ListPathsSafely_IfPrintf,$1,$2,2251,2500) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
196 |
$$(call ListPathsSafely_IfPrintf,$1,$2,2501,2750) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
197 |
$$(call ListPathsSafely_IfPrintf,$1,$2,2751,3000) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
198 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
199 |
$$(call ListPathsSafely_IfPrintf,$1,$2,3001,3250) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
200 |
$$(call ListPathsSafely_IfPrintf,$1,$2,3251,3500) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
201 |
$$(call ListPathsSafely_IfPrintf,$1,$2,3501,3750) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
202 |
$$(call ListPathsSafely_IfPrintf,$1,$2,3751,4000) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
203 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
204 |
$$(call ListPathsSafely_IfPrintf,$1,$2,4001,4250) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
205 |
$$(call ListPathsSafely_IfPrintf,$1,$2,4251,4500) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
206 |
$$(call ListPathsSafely_IfPrintf,$1,$2,4501,4750) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
207 |
$$(call ListPathsSafely_IfPrintf,$1,$2,4751,5000) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
208 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
209 |
$$(call ListPathsSafely_IfPrintf,$1,$2,5001,5250) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
210 |
$$(call ListPathsSafely_IfPrintf,$1,$2,5251,5500) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
211 |
$$(call ListPathsSafely_IfPrintf,$1,$2,5501,5750) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
212 |
$$(call ListPathsSafely_IfPrintf,$1,$2,5751,6000) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
213 |
|
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
214 |
$$(call ListPathsSafely_IfPrintf,$1,$2,6001,6250) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
215 |
$$(call ListPathsSafely_IfPrintf,$1,$2,6251,6500) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
216 |
$$(call ListPathsSafely_IfPrintf,$1,$2,6501,6750) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
217 |
$$(call ListPathsSafely_IfPrintf,$1,$2,6751,7000) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
218 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
219 |
$$(call ListPathsSafely_IfPrintf,$1,$2,7001,7250) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
220 |
$$(call ListPathsSafely_IfPrintf,$1,$2,7251,7500) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
221 |
$$(call ListPathsSafely_IfPrintf,$1,$2,7501,7750) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
222 |
$$(call ListPathsSafely_IfPrintf,$1,$2,7751,8000) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
223 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
224 |
$$(call ListPathsSafely_IfPrintf,$1,$2,8001,8250) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
225 |
$$(call ListPathsSafely_IfPrintf,$1,$2,8251,8500) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
226 |
$$(call ListPathsSafely_IfPrintf,$1,$2,8501,8750) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
227 |
$$(call ListPathsSafely_IfPrintf,$1,$2,8751,9000) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
228 |
|
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
229 |
$$(call ListPathsSafely_IfPrintf,$1,$2,9001,9250) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
230 |
$$(call ListPathsSafely_IfPrintf,$1,$2,9251,9500) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
231 |
$$(call ListPathsSafely_IfPrintf,$1,$2,9501,9750) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
232 |
$$(call ListPathsSafely_IfPrintf,$1,$2,9751,10000) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
233 |
endef |
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
234 |
endif # HAS_FILE_FUNCTION |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
235 |
|
12801 | 236 |
# The source tips can come from the Mercurial repository, or in the files |
20363 | 237 |
# $(HGTIP_FILENAME) which contains the tip but is also positioned in the same |
238 |
# directory as the original $(HGDIR) directory. |
|
239 |
# These should not be := assignments, only used from the root Makefile. |
|
12801 | 240 |
HG_VERSION = $(shell $(HG) version 2> /dev/null) |
241 |
HG_DIRECTORY=.hg |
|
242 |
HGTIP_FILENAME=.hgtip |
|
243 |
HG_SEARCH = ./REPO ./*/REPO ./*/*/REPO ./*/*/*/REPO |
|
244 |
REPO_LIST = $(patsubst ./%,%,$(patsubst %/,%,$(sort $(dir \ |
|
31219
86afedc80683
8129503: The SOURCE value in release file of JDK 9 doesn't contain changesets since b49
erikj
parents:
30095
diff
changeset
|
245 |
$(shell $(CD) $(SRC_ROOT) ; \ |
86afedc80683
8129503: The SOURCE value in release file of JDK 9 doesn't contain changesets since b49
erikj
parents:
30095
diff
changeset
|
246 |
$(LS) -d $(HG_SEARCH:%/REPO=%/$(HG_DIRECTORY)) \ |
86afedc80683
8129503: The SOURCE value in release file of JDK 9 doesn't contain changesets since b49
erikj
parents:
30095
diff
changeset
|
247 |
$(HG_SEARCH:%/REPO=%/$(HGTIP_FILENAME)) \ |
20363 | 248 |
2> /dev/null))))) |
12801 | 249 |
|
250 |
# Emit the repo:tip pairs to $@ |
|
251 |
define GetSourceTips |
|
20363 | 252 |
$(CD) $(SRC_ROOT) ; \ |
253 |
for i in $(REPO_LIST) IGNORE ; do \ |
|
254 |
if [ "$${i}" = "IGNORE" ] ; then \ |
|
255 |
continue; \ |
|
256 |
elif [ -d $${i}/$(HG_DIRECTORY) -a "$(HG_VERSION)" != "" ] ; then \ |
|
257 |
$(PRINTF) " %s:%s" \ |
|
258 |
"$${i}" `$(HG) tip --repository $${i} --template '{node|short}\n'` ; \ |
|
259 |
elif [ -f $${i}/$(HGTIP_FILENAME) ] ; then \ |
|
260 |
$(PRINTF) " %s:%s" \ |
|
261 |
"$${i}" `$(CAT) $${i}/$(HGTIP_FILENAME)` ; \ |
|
262 |
fi; \ |
|
263 |
done >> $@ |
|
264 |
$(PRINTF) "\n" >> $@ |
|
12801 | 265 |
endef |
266 |
||
267 |
# Create the HGTIP_FILENAME file. Called from jdk/make/closed/bundles.gmk |
|
268 |
define CreateHgTip |
|
20363 | 269 |
$(HG) tip --repository $1 --template '{node|short}\n' > $1/$(HGTIP_FILENAME); \ |
270 |
$(ECHO) $1/$(HGTIP_FILENAME) |
|
12801 | 271 |
endef |
272 |
||
273 |
define SetupLogging |
|
29662 | 274 |
ifeq ($$(LOG_LEVEL), trace) |
20363 | 275 |
# Shell redefinition trick inspired by http://www.cmcrossroads.com/ask-mr-make/6535-tracing-rule-execution-in-gnu-make |
276 |
# For each target executed, will print |
|
277 |
# Building <TARGET> (from <FIRST PREREQUISITE>) (<ALL NEWER PREREQUISITES> newer) |
|
278 |
# but with a limit of 20 on <ALL NEWER PREREQUISITES>, to avoid cluttering logs too much |
|
279 |
# (and causing a crash on Cygwin). |
|
280 |
# Default shell seems to always be /bin/sh. Must override with bash to get this to work on Solaris. |
|
281 |
# Only use time if it's GNU time which supports format and output file. |
|
29662 | 282 |
WRAPPER_SHELL := $$(BASH) $$(SRC_ROOT)/common/bin/shell-tracer.sh $$(if $$(findstring yes,$$(IS_GNU_TIME)),$$(TIME),-) $$(OUTPUT_ROOT)/build-trace-time.log $$(SHELL) |
283 |
SHELL := $$(warning $$(if $$@,Building $$@,Running shell command) $$(if $$<, (from $$<))$$(if $$?, ($$(wordlist 1, 20, $$?) $$(if $$(wordlist 21, 22, $$?), ... [in total $$(words $$?) files]) newer)))$$(WRAPPER_SHELL) |
|
20363 | 284 |
endif |
285 |
# Never remove warning messages; this is just for completeness |
|
29662 | 286 |
LOG_WARN := |
287 |
ifneq ($$(findstring $$(LOG_LEVEL), info debug trace),) |
|
288 |
LOG_INFO := |
|
20363 | 289 |
else |
29662 | 290 |
LOG_INFO := > /dev/null |
20363 | 291 |
endif |
29662 | 292 |
ifneq ($$(findstring $$(LOG_LEVEL), debug trace),) |
293 |
LOG_DEBUG := |
|
20363 | 294 |
else |
29662 | 295 |
LOG_DEBUG := > /dev/null |
20363 | 296 |
endif |
29662 | 297 |
ifneq ($$(findstring $$(LOG_LEVEL), trace),) |
298 |
LOG_TRACE := |
|
20363 | 299 |
else |
29662 | 300 |
LOG_TRACE := > /dev/null |
20363 | 301 |
endif |
12801 | 302 |
endef |
303 |
||
304 |
# Make sure logging is setup for everyone that includes MakeBase.gmk. |
|
305 |
$(eval $(call SetupLogging)) |
|
306 |
||
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
307 |
################################################################################ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
308 |
# Creates a sequence of increasing numbers (inclusive). |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
309 |
# Param 1 - starting number |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
310 |
# Param 2 - ending number |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
311 |
sequence = \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
312 |
$(wordlist $1, $2, $(strip \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
313 |
$(eval SEQUENCE_COUNT :=) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
314 |
$(call _sequence-do,$(strip $2)))) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
315 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
316 |
_sequence-do = \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
317 |
$(if $(word $1, $(SEQUENCE_COUNT)),, \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
318 |
$(eval SEQUENCE_COUNT += .) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
319 |
$(words $(SEQUENCE_COUNT)) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
320 |
$(call _sequence-do,$1)) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
321 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
322 |
################################################################################ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
323 |
|
33394 | 324 |
MAX_PARAMS := 35 |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
325 |
PARAM_SEQUENCE := $(call sequence, 2, $(MAX_PARAMS)) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
326 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
327 |
# Template for creating a macro taking named parameters. To use it, assign the |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
328 |
# template to a variable with the name you want for your macro, using '=' |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
329 |
# assignment. Then define a macro body with the suffix "Body". The Body macro |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
330 |
# should take 1 parameter which should be a unique string for that invocation |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
331 |
# of the macro. |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
332 |
# Ex: |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
333 |
# SetupFoo = $(NamedParamsMacroTemplate) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
334 |
# define SetupFooBody |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
335 |
# # do something |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
336 |
# # access parameters as $$($1_BAR) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
337 |
# endef |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
338 |
# Call it like this |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
339 |
# $(eval $(call SetupFoo, BUILD_SOMETHING, \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
340 |
# BAR := some parameter value, \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
341 |
# )) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
342 |
define NamedParamsMacroTemplate |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
343 |
$(if $($(MAX_PARAMS)),$(error Internal makefile error: \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
344 |
Too many named arguments to macro, please update MAX_PARAMS in MakeBase.gmk)) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
345 |
# Iterate over 2 3 4... and evaluate the named parameters with $1_ as prefix |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
346 |
$(foreach i,$(PARAM_SEQUENCE), $(if $(strip $($i)),\ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
347 |
$(strip $1)_$(strip $($i)))$(NEWLINE)) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
348 |
# Debug print all named parameter names and values |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
349 |
$(if $(findstring $(LOG_LEVEL),debug trace), \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
350 |
$(info $0 $(strip $1) $(foreach i,$(PARAM_SEQUENCE), \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
351 |
$(if $(strip $($i)),$(NEWLINE) $(strip [$i] $(if $(filter $(LOG_LEVEL), trace), \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
352 |
$($i), $(wordlist 1, 20, $($(i))) $(if $(word 21, $($(i))), ...))))))) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
353 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
354 |
$(if $(DEBUG_$(strip $1)), |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
355 |
$(info -------- <<< Begin expansion of $(strip $1)) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
356 |
$(info $(call $(0)Body,$(strip $1))) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
357 |
$(info -------- >>> End expansion of $(strip $1)) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
358 |
) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
359 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
360 |
$(call $(0)Body,$(strip $1)) |
14111 | 361 |
endef |
362 |
||
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
363 |
################################################################################ |
14111 | 364 |
# Make directory without forking mkdir if not needed |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
365 |
MakeDir = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
366 |
$(strip $(if $(subst $(wildcard $1 $2 $3 $4 $5 $6 $7 $8 $9),,$(strip $1 $2 $3 $4 $5 $6 $7 $8 $9)),\ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
367 |
$(shell $(MKDIR) -p $1 $2 $3 $4 $5 $6 $7 $8 $9))) |
14111 | 368 |
|
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
369 |
################################################################################ |
29866
6cecef2d84ab
8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents:
29861
diff
changeset
|
370 |
# Assign a variable only if it is empty |
6cecef2d84ab
8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents:
29861
diff
changeset
|
371 |
# Param 1 - Variable to assign |
6cecef2d84ab
8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents:
29861
diff
changeset
|
372 |
# Param 2 - Value to assign |
6cecef2d84ab
8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents:
29861
diff
changeset
|
373 |
SetIfEmpty = \ |
6cecef2d84ab
8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents:
29861
diff
changeset
|
374 |
$(if $($(strip $1)),,$(eval $(strip $1) := $2)) |
6cecef2d84ab
8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents:
29861
diff
changeset
|
375 |
|
6cecef2d84ab
8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents:
29861
diff
changeset
|
376 |
################################################################################ |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
377 |
|
14111 | 378 |
ifeq ($(OPENJDK_TARGET_OS),solaris) |
20363 | 379 |
# On Solaris, if the target is a symlink and exists, cp won't overwrite. |
380 |
# Cp has to operate in recursive mode to allow for -P flag, to preserve soft links. If the |
|
381 |
# name of the target file differs from the source file, rename after copy. |
|
23168
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
382 |
# If the source and target parent directories are the same, recursive copy doesn't work |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
383 |
# so we fall back on regular copy, which isn't preserving symlinks. |
20363 | 384 |
define install-file |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
385 |
$(MKDIR) -p '$(@D)' |
14111 | 386 |
$(RM) '$@' |
23168
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
387 |
if [ "$(@D)" != "$(<D)" ]; then \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
388 |
$(CP) -f -r -P '$<' '$(@D)'; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
389 |
if [ "$(@F)" != "$(<F)" ]; then \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
390 |
$(MV) '$(@D)/$(<F)' '$@'; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
391 |
fi; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
392 |
else \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
393 |
if [ -L '$<' ]; then \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
394 |
$(ECHO) "Source file is a symlink and target is in the same directory: $< $@" ; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
395 |
exit 1; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
396 |
fi; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
397 |
$(CP) -f '$<' '$@'; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
398 |
fi |
20363 | 399 |
endef |
14111 | 400 |
else ifeq ($(OPENJDK_TARGET_OS),macosx) |
20363 | 401 |
# On mac, extended attributes sometimes creep into the source files, which may later |
402 |
# cause the creation of ._* files which confuses testing. Clear these with xattr if |
|
403 |
# set. Some files get their write permissions removed after being copied to the |
|
404 |
# output dir. When these are copied again to images, xattr would fail. By only clearing |
|
405 |
# attributes when they are present, failing on this is avoided. |
|
406 |
define install-file |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
407 |
$(MKDIR) -p '$(@D)' |
16580
6acb502beafa
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
16419
diff
changeset
|
408 |
$(CP) -fRP '$<' '$@' |
6acb502beafa
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
16419
diff
changeset
|
409 |
if [ -n "`$(XATTR) -l '$@'`" ]; then $(XATTR) -c '$@'; fi |
20363 | 410 |
endef |
14111 | 411 |
else |
25854 | 412 |
# Running mkdir and cp in the same shell speeds up copy intensive tasks in Cygwin |
413 |
# significantly. |
|
20363 | 414 |
define install-file |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
415 |
$(MKDIR) -p '$(@D)' && $(CP) -fP '$<' '$@' |
20363 | 416 |
endef |
14111 | 417 |
endif |
418 |
||
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
419 |
################################################################################ |
25854 | 420 |
# Filter out duplicate sub strings while preserving order. Keeps the first occurance. |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
421 |
uniq = \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
422 |
$(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1))) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
423 |
|
32553
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
424 |
# Returns all whitespace-separated words in $2 where at least one of the |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
425 |
# whitespace-separated words in $1 is a substring. |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
426 |
containing = \ |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
427 |
$(strip \ |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
428 |
$(foreach v,$(strip $2),\ |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
429 |
$(call uniq,$(foreach p,$(strip $1),$(if $(findstring $p,$v),$v))))) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
430 |
|
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
431 |
# Returns all whitespace-separated words in $2 where none of the |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
432 |
# whitespace-separated words in $1 is a substring. |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
433 |
not-containing = \ |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
434 |
$(strip $(filter-out $(call containing,$1,$2),$2)) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
32460
diff
changeset
|
435 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
436 |
# Return a list of all string elements that are duplicated in $1. |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
437 |
dups = \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
438 |
$(strip $(foreach v, $(sort $1), $(if $(filter-out 1, \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
439 |
$(words $(filter $v, $1))), $v))) |
15051
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14279
diff
changeset
|
440 |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
441 |
# String equals |
28607
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28606
diff
changeset
|
442 |
equals = \ |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28606
diff
changeset
|
443 |
$(and $(findstring $(strip $1),$(strip $2)),\ |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28606
diff
changeset
|
444 |
$(findstring $(strip $2),$(strip $1))) |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
445 |
|
30095
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
446 |
# Remove a whole list of prefixes |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
447 |
# $1 - List of prefixes |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
448 |
# $2 - List of elements to process |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
449 |
remove-prefixes = \ |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
450 |
$(strip $(if $1,$(patsubst $(firstword $1)%,%,\ |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
451 |
$(call remove-prefixes,$(filter-out $(firstword $1),$1),$2)),$2)) |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29866
diff
changeset
|
452 |
|
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
453 |
################################################################################ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
454 |
|
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
455 |
ifneq ($(DISABLE_CACHE_FIND), true) |
23984 | 456 |
# In Cygwin, finds are very costly, both because of expensive forks and because |
457 |
# of bad file system caching. Find is used extensively in $(shell) commands to |
|
458 |
# find source files. This makes rerunning make with no or few changes rather |
|
459 |
# expensive. To speed this up, these two macros are used to cache the results |
|
460 |
# of simple find commands for reuse. |
|
461 |
# |
|
462 |
# Runs a find and stores both the directories where it was run and the results. |
|
463 |
# This macro can be called multiple times to add to the cache. Only finds files |
|
464 |
# with no filters. |
|
465 |
# |
|
466 |
# Needs to be called with $(eval ) |
|
467 |
# |
|
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
468 |
# Even if the performance benifit is negligible on other platforms, keep the |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
469 |
# functionality active unless explicitly disabled to exercise it more. |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
470 |
# |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
471 |
# Initialize FIND_CACHE_DIRS with := to make it a non recursively-expanded variable |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
472 |
FIND_CACHE_DIRS := |
23984 | 473 |
# Param 1 - Dirs to find in |
474 |
# Param 2 - (optional) specialization. Normally "-a \( ... \)" expression. |
|
20363 | 475 |
define FillCacheFind |
23984 | 476 |
# Filter out already cached dirs. The - is needed when FIND_CACHE_DIRS is empty |
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
477 |
# since filter out will then return empty. |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
478 |
FIND_CACHE_NEW_DIRS := $$(filter-out $$(addsuffix /%,\ |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
479 |
- $(FIND_CACHE_DIRS)) $(FIND_CACHE_DIRS), $1) |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
480 |
ifneq ($$(FIND_CACHE_NEW_DIRS), ) |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
481 |
# Remove any trailing slash from dirs in the cache dir list |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
482 |
FIND_CACHE_DIRS += $$(patsubst %/,%, $$(FIND_CACHE_NEW_DIRS)) |
23984 | 483 |
FIND_CACHE := $$(sort $$(FIND_CACHE) $$(shell $(FIND) $$(FIND_CACHE_NEW_DIRS) \( -type f -o -type l \) $2)) |
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
484 |
endif |
20363 | 485 |
endef |
15051
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14279
diff
changeset
|
486 |
|
23984 | 487 |
# Mimics find by looking in the cache if all of the directories have been cached. |
488 |
# Otherwise reverts to shell find. This is safe to call on all platforms, even if |
|
489 |
# cache is deactivated. |
|
490 |
# |
|
25854 | 491 |
# $1 can be either a directory or a file. If it's a directory, make |
492 |
# sure we have exactly one trailing slash before the wildcard. |
|
23984 | 493 |
# The extra - is needed when FIND_CACHE_DIRS is empty but should be harmless. |
494 |
# |
|
495 |
# Param 1 - Dirs to find in |
|
496 |
# Param 2 - (optional) specialization. Normally "-a \( ... \)" expression. |
|
497 |
define CacheFind |
|
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
498 |
$(if $(filter-out $(addsuffix /%,- $(FIND_CACHE_DIRS)) $(FIND_CACHE_DIRS),$1), \ |
23984 | 499 |
$(shell $(FIND) $1 \( -type f -o -type l \) $2), \ |
25854 | 500 |
$(filter $(addsuffix /%,$(patsubst %/,%,$1)) $1,$(FIND_CACHE))) |
23984 | 501 |
endef |
25854 | 502 |
|
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
503 |
else |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
504 |
# If CacheFind is disabled, just run the find command. |
23984 | 505 |
# Param 1 - Dirs to find in |
506 |
# Param 2 - (optional) specialization. Normally "-a \( ... \)" expression. |
|
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
507 |
define CacheFind |
23984 | 508 |
$(shell $(FIND) $1 \( -type f -o -type l \) $2) |
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
509 |
endef |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
510 |
endif |
15051
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14279
diff
changeset
|
511 |
|
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14279
diff
changeset
|
512 |
################################################################################ |
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14279
diff
changeset
|
513 |
|
25854 | 514 |
define AddFileToCopy |
515 |
# Helper macro for SetupCopyFiles |
|
516 |
# 1 : Source file |
|
517 |
# 2 : Dest file |
|
518 |
# 3 : Variable to add targets to |
|
519 |
# 4 : Macro to call for copy operation |
|
520 |
$2: $1 |
|
521 |
$(ECHO) $(LOG_INFO) Copying $$(patsubst $(OUTPUT_ROOT)/%,%,$$@) |
|
522 |
$$($$(strip $4)) |
|
523 |
||
524 |
$3 += $2 |
|
525 |
endef |
|
526 |
||
32811
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
527 |
# Returns the value of the first argument |
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
528 |
identity = \ |
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
529 |
$(strip $1) |
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
530 |
|
28902
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
531 |
# Setup make rules for copying files, with an option to do more complex |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
532 |
# processing instead of copying. |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
533 |
# |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
534 |
# Parameter 1 is the name of the rule. This name is used as variable prefix, |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
535 |
# and the targets generated are listed in a variable by that name. |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
536 |
# |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
537 |
# Remaining parameters are named arguments. These include: |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
538 |
# SRC : Source root dir (defaults to dir of first file) |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
539 |
# DEST : Dest root dir |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
540 |
# FILES : List of files to copy with absolute paths, or path relative to SRC. |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
541 |
# Must be in SRC. |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
542 |
# FLATTEN : Set to flatten the directory structure in the DEST dir. |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
543 |
# MACRO : Optionally override the default macro used for making the copy. |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
544 |
# Default is 'install-file' |
32811
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
545 |
# NAME_MACRO : Optionally supply a macro that rewrites the target file name |
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
546 |
# based on the source file name |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
547 |
SetupCopyFiles = $(NamedParamsMacroTemplate) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
548 |
define SetupCopyFilesBody |
25854 | 549 |
|
550 |
ifeq ($$($1_MACRO), ) |
|
551 |
$1_MACRO := install-file |
|
552 |
endif |
|
553 |
||
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
554 |
# Default SRC to the dir of the first file. |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
555 |
ifeq ($$($1_SRC), ) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
556 |
$1_SRC := $$(dir $$(firstword $$($1_FILES))) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
557 |
endif |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
558 |
|
32811
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
559 |
ifeq ($$($1_NAME_MACRO), ) |
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
560 |
$1_NAME_MACRO := identity |
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
561 |
endif |
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
562 |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
563 |
# Remove any trailing slash from SRC |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
564 |
$1_SRC := $$(patsubst %/,%,$$($1_SRC)) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
565 |
|
25854 | 566 |
$$(foreach f, $$(patsubst $$($1_SRC)/%,%,$$($1_FILES)), \ |
567 |
$$(eval $$(call AddFileToCopy, $$($1_SRC)/$$f, \ |
|
32811
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
568 |
$$($1_DEST)/$$(call $$(strip $$($1_NAME_MACRO)),$$(if $$($1_FLATTEN),$$(notdir $$f),$$f)), \ |
df82db312e58
8135060: Stop building Xcode projects in install build
erikj
parents:
32553
diff
changeset
|
569 |
$1, $$($1_MACRO)))) |
25854 | 570 |
|
571 |
endef |
|
572 |
||
573 |
################################################################################ |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
574 |
# ShellQuote |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
575 |
# |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
576 |
# Quotes a string with single quotes and replaces single quotes with '\'' so |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
577 |
# that the contents survives being given to the shell. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
578 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
579 |
ShellQuote = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
580 |
$(SQUOTE)$(subst $(SQUOTE),$(SQUOTE)\$(SQUOTE)$(SQUOTE),$(strip $1))$(SQUOTE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
581 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
582 |
################################################################################ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
583 |
# Write to and read from file |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
584 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
585 |
# Param 1 - File to read |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
586 |
ReadFile = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
587 |
$(shell $(CAT) $1) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
588 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
589 |
# Param 1 - Text to write |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
590 |
# Param 2 - File to write to |
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
591 |
ifeq ($(HAS_FILE_FUNCTION), true) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
592 |
WriteFile = \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
593 |
$(file >$2,$(strip $1)) |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
594 |
else |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
595 |
# Use printf to get consistent behavior on all platforms. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
596 |
WriteFile = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
597 |
$(shell $(PRINTF) "%s" $(call ShellQuote, $1) > $2) |
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
598 |
endif |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
599 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
600 |
################################################################################ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
601 |
# DependOnVariable |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
602 |
# |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
603 |
# This macro takes a variable name and puts the value in a file only if the |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
604 |
# value has changed since last. The name of the file is returned. This can be |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
605 |
# used to create rule dependencies on make variable values. The following |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
606 |
# example would get rebuilt if the value of SOME_VAR was changed: |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
607 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
608 |
# path/to/some-file: $(call DependOnVariable, SOME_VAR) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
609 |
# echo $(SOME_VAR) > $@ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
610 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
611 |
# Note that leading and trailing white space in the value is ignored. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
612 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
613 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
614 |
# Defines the sub directory structure to store variable value file in |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
615 |
DependOnVariableDirName = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
616 |
$(strip $(subst $(SRC_ROOT)/,,\ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
617 |
$(if $(filter /%, $(firstword $(MAKEFILE_LIST))), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
618 |
$(firstword $(MAKEFILE_LIST)), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
619 |
$(CURDIR)/$(firstword $(MAKEFILE_LIST))))) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
620 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
621 |
# Defines the name of the file to store variable value in. Generates a name |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
622 |
# unless parameter 2 is given. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
623 |
# Param 1 - Name of variable |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
624 |
# Param 2 - (optional) name of file to store value in |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
625 |
DependOnVariableFileName = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
626 |
$(strip $(if $(strip $2), $2, \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
627 |
$(MAKESUPPORT_OUTPUTDIR)/vardeps/$(DependOnVariableDirName)/$(strip $1).vardeps)) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
628 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
629 |
# Does the actual work with parameters stripped. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
630 |
# If the file exists AND the contents is the same as the variable, do nothing |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
631 |
# else print a new file. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
632 |
# Always returns the name of the file where the value was printed. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
633 |
# Param 1 - Name of variable |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
634 |
# Param 2 - (optional) name of file to store value in |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
635 |
DependOnVariableHelper = \ |
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
636 |
$(strip \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
637 |
$(eval -include $(call DependOnVariableFileName, $1, $2)) \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
638 |
$(if $(call equals, $(strip $($1)), $(strip $($1_old))),,\ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
639 |
$(call MakeDir, $(dir $(call DependOnVariableFileName, $1, $2))) \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
640 |
$(if $(findstring $(LOG_LEVEL), trace), \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
641 |
$(info NewVariable $1: >$(strip $($1))<) \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
642 |
$(info OldVariable $1: >$(strip $($1_old))<)) \ |
33054
bcb9f5ea5761
8140484: Vardeps broken when variable value contains '$'
erikj
parents:
32812
diff
changeset
|
643 |
$(call WriteFile, $1_old:=$(call DoubleDollar,$($1)), \ |
bcb9f5ea5761
8140484: Vardeps broken when variable value contains '$'
erikj
parents:
32812
diff
changeset
|
644 |
$(call DependOnVariableFileName, $1, $2))) \ |
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
645 |
$(call DependOnVariableFileName, $1, $2) \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
646 |
) |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
647 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
648 |
# Main macro |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
649 |
# Param 1 - Name of variable |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
650 |
# Param 2 - (optional) name of file to store value in |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
651 |
DependOnVariable = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
652 |
$(call DependOnVariableHelper,$(strip $1),$(strip $2)) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
653 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
654 |
################################################################################ |
32344
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
655 |
# Failure logging support macros. These are supposed to be used by the Setup* |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
656 |
# compilation macros. |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
657 |
# |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
658 |
# LogFailures will run a command and store a copy of output in a specified file. |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
659 |
# If the command succeeds, the file is deleted, otherwise it is moved to the |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
660 |
# failure-logs directory. |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
661 |
# Param 1 - The log file of the failed command |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
662 |
# Param 2 - A compact but representative name to describe this command |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
663 |
# Param 3 - Command to run |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
664 |
LogFailures = \ |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
665 |
( ($(BASH) $(SRC_ROOT)/common/bin/logger.sh $1 $3 && $(RM) $1) || \ |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
666 |
(exitcode=$(DOLLAR)$(DOLLAR)? && $(MV) $1 $(MAKESUPPORT_OUTPUTDIR)/failure-logs/$(strip $2).log && exit $(DOLLAR)$(DOLLAR)exitcode) ) |
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
667 |
|
0b288e0efcfa
8062618: Create a build failure summary at end of build log
ihse
parents:
31312
diff
changeset
|
668 |
################################################################################ |
31310 | 669 |
# Find lib dir for module |
670 |
# Param 1 - module name |
|
671 |
ifeq ($(OPENJDK_TARGET_OS_TYPE), unix) |
|
672 |
FindLibDirForModule = \ |
|
673 |
$(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)$(OPENJDK_TARGET_CPU_LIBDIR) |
|
674 |
else |
|
675 |
FindLibDirForModule = \ |
|
676 |
$(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1) |
|
677 |
endif |
|
678 |
||
679 |
################################################################################ |
|
32460
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
680 |
# Return a string suitable for use after a -classpath option. It will correct and safe to use |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
681 |
# on all platforms. Arguments are given as space separate classpath entries. |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
682 |
# param 1 : A space separated list of classpath entries |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
683 |
# The surrounding strip is needed to keep additional whitespace out |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
684 |
PathList = \ |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
685 |
"$(subst $(SPACE),$(PATH_SEP),$(strip $1))" |
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
686 |
|
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
32344
diff
changeset
|
687 |
################################################################################ |
25854 | 688 |
|
689 |
# Hook to include the corresponding custom file, if present. |
|
690 |
$(eval $(call IncludeCustomExtension, , common/MakeBase.gmk)) |
|
691 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
692 |
endif # _MAKEBASE_GMK |