author | dholmes |
Thu, 26 Mar 2015 19:25:48 -0400 | |
changeset 29718 | d0e9a4ece867 |
parent 29312 | f3f859137ce6 |
child 29662 | 78c47f0002c3 |
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 |
|
25854 | 35 |
################################################################################ |
36 |
# This macro translates $ into \$ to protect the $ from expansion in the shell. |
|
37 |
# To make this macro resilient against already escaped strings, first remove |
|
38 |
# any present escapes before escaping so that no double escapes are added. |
|
39 |
EscapeDollar = $(subst $$,\$$,$(subst \$$,$$,$(strip $1))) |
|
40 |
||
41 |
################################################################################ |
|
42 |
# This macro translates $ into $$ to protect the string from make itself. |
|
43 |
DoubleDollar = $(subst $$,$$$$,$(strip $1)) |
|
44 |
||
45 |
################################################################################ |
|
46 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
47 |
# If the variable that you want to send to stdout for piping into a file or otherwise, |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
48 |
# is potentially long, for example the a list of file paths, eg a list of all package directories. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
49 |
# Then you need to use ListPathsSafely, which optimistically splits the output into several shell |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
50 |
# calls as well as use compression on recurrent file paths segments, to get around the potential |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
51 |
# command line length problem that exists in cygwin and other shells. |
21759 | 52 |
compress_pre:=$(strip $(shell $(CAT) $(SRC_ROOT)/make/common/support/ListPathsSafely-pre-compress.incl)) |
53 |
compress_post:=$(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
|
54 |
compress_paths=$(compress_pre)\ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
55 |
$(subst $(SRC_ROOT),X97,\ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
56 |
$(subst $(OUTPUT_ROOT),X98,\ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
57 |
$(subst X,X00,\ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
58 |
$(subst $(SPACE),\n,$(strip $1)))))\ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
59 |
$(compress_post) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
60 |
|
21759 | 61 |
decompress_paths=$(SED) -f $(SRC_ROOT)/make/common/support/ListPathsSafely-uncompress.sed -e 's|X99|\\n|g' \ |
20363 | 62 |
-e 's|X98|$(OUTPUT_ROOT)|g' -e 's|X97|$(SRC_ROOT)|g' \ |
63 |
-e 's|X00|X|g' | tr '\n' '$2' |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
64 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
65 |
define ListPathsSafely_If |
20363 | 66 |
$(if $(word $3,$($1)),$(eval $1_LPS$3:=$(call compress_paths,$(wordlist $3,$4,$($1))))) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
67 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
68 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
69 |
define ListPathsSafely_Printf |
20364 | 70 |
$(if $(strip $($1_LPS$4)),$(if $(findstring $(LOG_LEVEL),trace),,@)printf \ |
25854 | 71 |
-- "$(strip $(call EscapeDollar, $($1_LPS$4)))\n" | $(decompress_paths) $3) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
72 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
73 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
74 |
# Receipt example: |
20363 | 75 |
# rm -f thepaths |
76 |
# $(call ListPathsSafely,THEPATHS,\n, >> thepaths) |
|
77 |
# The \n argument means translate spaces into \n |
|
78 |
# if instead , , (a space) is supplied, then spaces remain spaces. |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
79 |
define ListPathsSafely |
20363 | 80 |
$(if $(word 16001,$($1)),$(error Cannot list safely more than 16000 paths. $1 has $(words $($1)) paths!)) |
20364 | 81 |
$(ECHO) $(LOG_DEBUG) Writing $(words $($1)) paths to '$3' |
20363 | 82 |
$(call ListPathsSafely_If,$1,$2,1,250) |
83 |
$(call ListPathsSafely_If,$1,$2,251,500) |
|
84 |
$(call ListPathsSafely_If,$1,$2,501,750) |
|
85 |
$(call ListPathsSafely_If,$1,$2,751,1000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
86 |
|
20363 | 87 |
$(call ListPathsSafely_If,$1,$2,1001,1250) |
88 |
$(call ListPathsSafely_If,$1,$2,1251,1500) |
|
89 |
$(call ListPathsSafely_If,$1,$2,1501,1750) |
|
90 |
$(call ListPathsSafely_If,$1,$2,1751,2000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
91 |
|
20363 | 92 |
$(call ListPathsSafely_If,$1,$2,2001,2250) |
93 |
$(call ListPathsSafely_If,$1,$2,2251,2500) |
|
94 |
$(call ListPathsSafely_If,$1,$2,2501,2750) |
|
95 |
$(call ListPathsSafely_If,$1,$2,2751,3000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
96 |
|
20363 | 97 |
$(call ListPathsSafely_If,$1,$2,3001,3250) |
98 |
$(call ListPathsSafely_If,$1,$2,3251,3500) |
|
99 |
$(call ListPathsSafely_If,$1,$2,3501,3750) |
|
100 |
$(call ListPathsSafely_If,$1,$2,3751,4000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
101 |
|
20363 | 102 |
$(call ListPathsSafely_If,$1,$2,4001,4250) |
103 |
$(call ListPathsSafely_If,$1,$2,4251,4500) |
|
104 |
$(call ListPathsSafely_If,$1,$2,4501,4750) |
|
105 |
$(call ListPathsSafely_If,$1,$2,4751,5000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
106 |
|
20363 | 107 |
$(call ListPathsSafely_If,$1,$2,5001,5250) |
108 |
$(call ListPathsSafely_If,$1,$2,5251,5500) |
|
109 |
$(call ListPathsSafely_If,$1,$2,5501,5750) |
|
110 |
$(call ListPathsSafely_If,$1,$2,5751,6000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
111 |
|
20363 | 112 |
$(call ListPathsSafely_If,$1,$2,6001,6250) |
113 |
$(call ListPathsSafely_If,$1,$2,6251,6500) |
|
114 |
$(call ListPathsSafely_If,$1,$2,6501,6750) |
|
115 |
$(call ListPathsSafely_If,$1,$2,6751,7000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
116 |
|
20363 | 117 |
$(call ListPathsSafely_If,$1,$2,7001,7250) |
118 |
$(call ListPathsSafely_If,$1,$2,7251,7500) |
|
119 |
$(call ListPathsSafely_If,$1,$2,7501,7750) |
|
120 |
$(call ListPathsSafely_If,$1,$2,7751,8000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
121 |
|
20363 | 122 |
$(call ListPathsSafely_If,$1,$2,8001,8250) |
123 |
$(call ListPathsSafely_If,$1,$2,8251,8500) |
|
124 |
$(call ListPathsSafely_If,$1,$2,8501,8750) |
|
125 |
$(call ListPathsSafely_If,$1,$2,8751,9000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
126 |
|
20363 | 127 |
$(call ListPathsSafely_If,$1,$2,9001,9250) |
128 |
$(call ListPathsSafely_If,$1,$2,9251,9500) |
|
129 |
$(call ListPathsSafely_If,$1,$2,9501,9750) |
|
130 |
$(call ListPathsSafely_If,$1,$2,9751,10000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
131 |
|
20363 | 132 |
$(call ListPathsSafely_If,$1,$2,10001,10250) |
133 |
$(call ListPathsSafely_If,$1,$2,10251,10500) |
|
134 |
$(call ListPathsSafely_If,$1,$2,10501,10750) |
|
135 |
$(call ListPathsSafely_If,$1,$2,10751,11000) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
136 |
|
20363 | 137 |
$(call ListPathsSafely_If,$1,$2,11001,11250) |
138 |
$(call ListPathsSafely_If,$1,$2,11251,11500) |
|
139 |
$(call ListPathsSafely_If,$1,$2,11501,11750) |
|
140 |
$(call ListPathsSafely_If,$1,$2,11751,12000) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
141 |
|
20363 | 142 |
$(call ListPathsSafely_If,$1,$2,12001,12250) |
143 |
$(call ListPathsSafely_If,$1,$2,12251,12500) |
|
144 |
$(call ListPathsSafely_If,$1,$2,12501,12750) |
|
145 |
$(call ListPathsSafely_If,$1,$2,12751,13000) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
146 |
|
20363 | 147 |
$(call ListPathsSafely_If,$1,$2,13001,13250) |
148 |
$(call ListPathsSafely_If,$1,$2,13251,13500) |
|
149 |
$(call ListPathsSafely_If,$1,$2,13501,13750) |
|
150 |
$(call ListPathsSafely_If,$1,$2,13751,14000) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
151 |
|
20363 | 152 |
$(call ListPathsSafely_If,$1,$2,14001,14250) |
153 |
$(call ListPathsSafely_If,$1,$2,14251,14500) |
|
154 |
$(call ListPathsSafely_If,$1,$2,14501,14750) |
|
155 |
$(call ListPathsSafely_If,$1,$2,14751,15000) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
156 |
|
20363 | 157 |
$(call ListPathsSafely_If,$1,$2,15001,15250) |
158 |
$(call ListPathsSafely_If,$1,$2,15251,15500) |
|
159 |
$(call ListPathsSafely_If,$1,$2,15501,15750) |
|
160 |
$(call ListPathsSafely_If,$1,$2,15751,16000) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
161 |
|
20363 | 162 |
$(call ListPathsSafely_Printf,$1,$2,$3,1) |
163 |
$(call ListPathsSafely_Printf,$1,$2,$3,251) |
|
164 |
$(call ListPathsSafely_Printf,$1,$2,$3,501) |
|
165 |
$(call ListPathsSafely_Printf,$1,$2,$3,751) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
166 |
|
20363 | 167 |
$(call ListPathsSafely_Printf,$1,$2,$3,1001) |
168 |
$(call ListPathsSafely_Printf,$1,$2,$3,1251) |
|
169 |
$(call ListPathsSafely_Printf,$1,$2,$3,1501) |
|
170 |
$(call ListPathsSafely_Printf,$1,$2,$3,1751) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
171 |
|
20363 | 172 |
$(call ListPathsSafely_Printf,$1,$2,$3,2001) |
173 |
$(call ListPathsSafely_Printf,$1,$2,$3,2251) |
|
174 |
$(call ListPathsSafely_Printf,$1,$2,$3,2501) |
|
175 |
$(call ListPathsSafely_Printf,$1,$2,$3,2751) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
176 |
|
20363 | 177 |
$(call ListPathsSafely_Printf,$1,$2,$3,3001) |
178 |
$(call ListPathsSafely_Printf,$1,$2,$3,3251) |
|
179 |
$(call ListPathsSafely_Printf,$1,$2,$3,3501) |
|
180 |
$(call ListPathsSafely_Printf,$1,$2,$3,3751) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
181 |
|
20363 | 182 |
$(call ListPathsSafely_Printf,$1,$2,$3,4001) |
183 |
$(call ListPathsSafely_Printf,$1,$2,$3,4251) |
|
184 |
$(call ListPathsSafely_Printf,$1,$2,$3,4501) |
|
185 |
$(call ListPathsSafely_Printf,$1,$2,$3,4751) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
186 |
|
20363 | 187 |
$(call ListPathsSafely_Printf,$1,$2,$3,5001) |
188 |
$(call ListPathsSafely_Printf,$1,$2,$3,5251) |
|
189 |
$(call ListPathsSafely_Printf,$1,$2,$3,5501) |
|
190 |
$(call ListPathsSafely_Printf,$1,$2,$3,5751) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
191 |
|
20363 | 192 |
$(call ListPathsSafely_Printf,$1,$2,$3,6001) |
193 |
$(call ListPathsSafely_Printf,$1,$2,$3,6251) |
|
194 |
$(call ListPathsSafely_Printf,$1,$2,$3,6501) |
|
195 |
$(call ListPathsSafely_Printf,$1,$2,$3,6751) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
196 |
|
20363 | 197 |
$(call ListPathsSafely_Printf,$1,$2,$3,7001) |
198 |
$(call ListPathsSafely_Printf,$1,$2,$3,7251) |
|
199 |
$(call ListPathsSafely_Printf,$1,$2,$3,7501) |
|
200 |
$(call ListPathsSafely_Printf,$1,$2,$3,7751) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
201 |
|
20363 | 202 |
$(call ListPathsSafely_Printf,$1,$2,$3,8001) |
203 |
$(call ListPathsSafely_Printf,$1,$2,$3,8251) |
|
204 |
$(call ListPathsSafely_Printf,$1,$2,$3,8501) |
|
205 |
$(call ListPathsSafely_Printf,$1,$2,$3,8751) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
206 |
|
20363 | 207 |
$(call ListPathsSafely_Printf,$1,$2,$3,9001) |
208 |
$(call ListPathsSafely_Printf,$1,$2,$3,9251) |
|
209 |
$(call ListPathsSafely_Printf,$1,$2,$3,9501) |
|
210 |
$(call ListPathsSafely_Printf,$1,$2,$3,9751) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
211 |
|
20363 | 212 |
$(call ListPathsSafely_Printf,$1,$2,$3,10001) |
213 |
$(call ListPathsSafely_Printf,$1,$2,$3,10251) |
|
214 |
$(call ListPathsSafely_Printf,$1,$2,$3,10501) |
|
215 |
$(call ListPathsSafely_Printf,$1,$2,$3,10751) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
216 |
|
20363 | 217 |
$(call ListPathsSafely_Printf,$1,$2,$3,11001) |
218 |
$(call ListPathsSafely_Printf,$1,$2,$3,11251) |
|
219 |
$(call ListPathsSafely_Printf,$1,$2,$3,11501) |
|
220 |
$(call ListPathsSafely_Printf,$1,$2,$3,11751) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
221 |
|
20363 | 222 |
$(call ListPathsSafely_Printf,$1,$2,$3,12001) |
223 |
$(call ListPathsSafely_Printf,$1,$2,$3,12251) |
|
224 |
$(call ListPathsSafely_Printf,$1,$2,$3,12501) |
|
225 |
$(call ListPathsSafely_Printf,$1,$2,$3,12751) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
226 |
|
20363 | 227 |
$(call ListPathsSafely_Printf,$1,$2,$3,13001) |
228 |
$(call ListPathsSafely_Printf,$1,$2,$3,13251) |
|
229 |
$(call ListPathsSafely_Printf,$1,$2,$3,13501) |
|
230 |
$(call ListPathsSafely_Printf,$1,$2,$3,13751) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
231 |
|
20363 | 232 |
$(call ListPathsSafely_Printf,$1,$2,$3,14001) |
233 |
$(call ListPathsSafely_Printf,$1,$2,$3,14251) |
|
234 |
$(call ListPathsSafely_Printf,$1,$2,$3,14501) |
|
235 |
$(call ListPathsSafely_Printf,$1,$2,$3,14751) |
|
14279
1c596d0f411c
8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents:
14111
diff
changeset
|
236 |
|
20363 | 237 |
$(call ListPathsSafely_Printf,$1,$2,$3,15001) |
238 |
$(call ListPathsSafely_Printf,$1,$2,$3,15251) |
|
239 |
$(call ListPathsSafely_Printf,$1,$2,$3,15501) |
|
240 |
$(call ListPathsSafely_Printf,$1,$2,$3,15751) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
241 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
242 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
243 |
define ListPathsSafelyNow_IfPrintf |
20363 | 244 |
ifneq (,$$(word $4,$$($1))) |
245 |
$$(eval $1_LPS$4:=$$(call compress_paths,$$(wordlist $4,$5,$$($1)))) |
|
246 |
$$(shell printf -- "$$(strip $$($1_LPS$4))\n" | $(decompress_paths) $3) |
|
247 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
248 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
249 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
250 |
# And an non-receipt version: |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
251 |
define ListPathsSafelyNow |
20363 | 252 |
ifneq (,$$(word 10001,$$($1))) |
253 |
$$(error Cannot list safely more than 10000 paths. $1 has $$(words $$($1)) paths!) |
|
254 |
endif |
|
255 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,1,250) |
|
256 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,251,500) |
|
257 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,501,750) |
|
258 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,751,1000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
259 |
|
20363 | 260 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,1001,1250) |
261 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,1251,1500) |
|
262 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,1501,1750) |
|
263 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,1751,2000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
264 |
|
20363 | 265 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,2001,2250) |
266 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,2251,2500) |
|
267 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,2501,2750) |
|
268 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,2751,3000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
269 |
|
20363 | 270 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,3001,3250) |
271 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,3251,3500) |
|
272 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,3501,3750) |
|
273 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,3751,4000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
274 |
|
20363 | 275 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,4001,4250) |
276 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,4251,4500) |
|
277 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,4501,4750) |
|
278 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,4751,5000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
279 |
|
20363 | 280 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,5001,5250) |
281 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,5251,5500) |
|
282 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,5501,5750) |
|
283 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,5751,6000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
284 |
|
20363 | 285 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,6001,6250) |
286 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,6251,6500) |
|
287 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,6501,6750) |
|
288 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,6751,7000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
289 |
|
20363 | 290 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,7001,7250) |
291 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,7251,7500) |
|
292 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,7501,7750) |
|
293 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,7751,8000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
294 |
|
20363 | 295 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,8001,8250) |
296 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,8251,8500) |
|
297 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,8501,8750) |
|
298 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,8751,9000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
299 |
|
20363 | 300 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,9001,9250) |
301 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,9251,9500) |
|
302 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,9501,9750) |
|
303 |
$(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,9751,10000) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
304 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
305 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
306 |
|
12801 | 307 |
# The source tips can come from the Mercurial repository, or in the files |
20363 | 308 |
# $(HGTIP_FILENAME) which contains the tip but is also positioned in the same |
309 |
# directory as the original $(HGDIR) directory. |
|
310 |
# These should not be := assignments, only used from the root Makefile. |
|
12801 | 311 |
HG_VERSION = $(shell $(HG) version 2> /dev/null) |
312 |
HG_DIRECTORY=.hg |
|
313 |
HGTIP_FILENAME=.hgtip |
|
314 |
HG_SEARCH = ./REPO ./*/REPO ./*/*/REPO ./*/*/*/REPO |
|
315 |
REPO_LIST = $(patsubst ./%,%,$(patsubst %/,%,$(sort $(dir \ |
|
316 |
$(shell $(CD) $(SRC_ROOT) ; ( $(LS) -d $(HG_SEARCH:%/REPO=%/$(HG_DIRECTORY)) ; \ |
|
20363 | 317 |
$(LS) $(HG_SEARCH:%/REPO=%/$(HGTIP_FILENAME)) ) \ |
318 |
2> /dev/null))))) |
|
12801 | 319 |
|
320 |
# Emit the repo:tip pairs to $@ |
|
321 |
define GetSourceTips |
|
20363 | 322 |
$(CD) $(SRC_ROOT) ; \ |
323 |
for i in $(REPO_LIST) IGNORE ; do \ |
|
324 |
if [ "$${i}" = "IGNORE" ] ; then \ |
|
325 |
continue; \ |
|
326 |
elif [ -d $${i}/$(HG_DIRECTORY) -a "$(HG_VERSION)" != "" ] ; then \ |
|
327 |
$(PRINTF) " %s:%s" \ |
|
328 |
"$${i}" `$(HG) tip --repository $${i} --template '{node|short}\n'` ; \ |
|
329 |
elif [ -f $${i}/$(HGTIP_FILENAME) ] ; then \ |
|
330 |
$(PRINTF) " %s:%s" \ |
|
331 |
"$${i}" `$(CAT) $${i}/$(HGTIP_FILENAME)` ; \ |
|
332 |
fi; \ |
|
333 |
done >> $@ |
|
334 |
$(PRINTF) "\n" >> $@ |
|
12801 | 335 |
endef |
336 |
||
337 |
# Create the HGTIP_FILENAME file. Called from jdk/make/closed/bundles.gmk |
|
338 |
define CreateHgTip |
|
20363 | 339 |
$(HG) tip --repository $1 --template '{node|short}\n' > $1/$(HGTIP_FILENAME); \ |
340 |
$(ECHO) $1/$(HGTIP_FILENAME) |
|
12801 | 341 |
endef |
342 |
||
343 |
define SetupLogging |
|
20363 | 344 |
ifeq ($$(LOG_LEVEL),trace) |
345 |
# Shell redefinition trick inspired by http://www.cmcrossroads.com/ask-mr-make/6535-tracing-rule-execution-in-gnu-make |
|
346 |
# For each target executed, will print |
|
347 |
# Building <TARGET> (from <FIRST PREREQUISITE>) (<ALL NEWER PREREQUISITES> newer) |
|
348 |
# but with a limit of 20 on <ALL NEWER PREREQUISITES>, to avoid cluttering logs too much |
|
349 |
# (and causing a crash on Cygwin). |
|
350 |
# Default shell seems to always be /bin/sh. Must override with bash to get this to work on Solaris. |
|
351 |
# Only use time if it's GNU time which supports format and output file. |
|
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27595
diff
changeset
|
352 |
WRAPPER_SHELL:=$$(BASH) $$(SRC_ROOT)/common/bin/shell-tracer.sh $$(if $$(findstring yes,$$(IS_GNU_TIME)),$$(TIME),-) $$(OUTPUT_ROOT)/build-trace-time.log $$(SHELL) |
20363 | 353 |
SHELL=$$(warning $$(if $$@,Building $$@,Running shell command) $$(if $$<, (from $$<))$$(if $$?, ($$(wordlist 1, 20, $$?) $$(if $$(wordlist 21, 22, $$?), ... [in total $$(words $$?) files]) newer)))$$(WRAPPER_SHELL) |
354 |
endif |
|
355 |
# Never remove warning messages; this is just for completeness |
|
356 |
LOG_WARN= |
|
357 |
ifneq ($$(findstring $$(LOG_LEVEL),info debug trace),) |
|
358 |
LOG_INFO= |
|
359 |
else |
|
360 |
LOG_INFO=> /dev/null |
|
361 |
endif |
|
362 |
ifneq ($$(findstring $$(LOG_LEVEL),debug trace),) |
|
363 |
LOG_DEBUG= |
|
364 |
else |
|
365 |
LOG_DEBUG=> /dev/null |
|
366 |
endif |
|
367 |
ifneq ($$(findstring $$(LOG_LEVEL),trace),) |
|
368 |
LOG_TRACE= |
|
369 |
else |
|
370 |
LOG_TRACE=> /dev/null |
|
371 |
endif |
|
12801 | 372 |
endef |
373 |
||
374 |
# Make sure logging is setup for everyone that includes MakeBase.gmk. |
|
375 |
$(eval $(call SetupLogging)) |
|
376 |
||
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
377 |
################################################################################ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
378 |
# Creates a sequence of increasing numbers (inclusive). |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
379 |
# Param 1 - starting number |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
380 |
# Param 2 - ending number |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
381 |
sequence = \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
382 |
$(wordlist $1, $2, $(strip \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
383 |
$(eval SEQUENCE_COUNT :=) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
384 |
$(call _sequence-do,$(strip $2)))) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
385 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
386 |
_sequence-do = \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
387 |
$(if $(word $1, $(SEQUENCE_COUNT)),, \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
388 |
$(eval SEQUENCE_COUNT += .) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
389 |
$(words $(SEQUENCE_COUNT)) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
390 |
$(call _sequence-do,$1)) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
391 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
392 |
################################################################################ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
393 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
394 |
MAX_PARAMS := 30 |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
395 |
PARAM_SEQUENCE := $(call sequence, 2, $(MAX_PARAMS)) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
396 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
397 |
# 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
|
398 |
# 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
|
399 |
# 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
|
400 |
# 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
|
401 |
# of the macro. |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
402 |
# Ex: |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
403 |
# SetupFoo = $(NamedParamsMacroTemplate) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
404 |
# define SetupFooBody |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
405 |
# # do something |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
406 |
# # access parameters as $$($1_BAR) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
407 |
# endef |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
408 |
# Call it like this |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
409 |
# $(eval $(call SetupFoo, BUILD_SOMETHING, \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
410 |
# BAR := some parameter value, \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
411 |
# )) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
412 |
define NamedParamsMacroTemplate |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
413 |
$(if $($(MAX_PARAMS)),$(error Internal makefile error: \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
414 |
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
|
415 |
# 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
|
416 |
$(foreach i,$(PARAM_SEQUENCE), $(if $(strip $($i)),\ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
417 |
$(strip $1)_$(strip $($i)))$(NEWLINE)) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
418 |
# Debug print all named parameter names and values |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
419 |
$(if $(findstring $(LOG_LEVEL),debug trace), \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
420 |
$(info $0 $(strip $1) $(foreach i,$(PARAM_SEQUENCE), \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
421 |
$(if $(strip $($i)),$(NEWLINE) $(strip [$i] $(if $(filter $(LOG_LEVEL), trace), \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
422 |
$($i), $(wordlist 1, 20, $($(i))) $(if $(word 21, $($(i))), ...))))))) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
423 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
424 |
$(if $(DEBUG_$(strip $1)), |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
425 |
$(info -------- <<< Begin expansion of $(strip $1)) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
426 |
$(info $(call $(0)Body,$(strip $1))) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
427 |
$(info -------- >>> End expansion of $(strip $1)) \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
428 |
) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
429 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
430 |
$(call $(0)Body,$(strip $1)) |
14111 | 431 |
endef |
432 |
||
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
433 |
################################################################################ |
14111 | 434 |
# Make directory without forking mkdir if not needed |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
435 |
MakeDir = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
436 |
$(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
|
437 |
$(shell $(MKDIR) -p $1 $2 $3 $4 $5 $6 $7 $8 $9))) |
14111 | 438 |
|
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
439 |
################################################################################ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
440 |
|
14111 | 441 |
ifeq ($(OPENJDK_TARGET_OS),solaris) |
20363 | 442 |
# On Solaris, if the target is a symlink and exists, cp won't overwrite. |
443 |
# Cp has to operate in recursive mode to allow for -P flag, to preserve soft links. If the |
|
444 |
# 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
|
445 |
# 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
|
446 |
# so we fall back on regular copy, which isn't preserving symlinks. |
20363 | 447 |
define install-file |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
448 |
$(MKDIR) -p '$(@D)' |
14111 | 449 |
$(RM) '$@' |
23168
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
450 |
if [ "$(@D)" != "$(<D)" ]; then \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
451 |
$(CP) -f -r -P '$<' '$(@D)'; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
452 |
if [ "$(@F)" != "$(<F)" ]; then \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
453 |
$(MV) '$(@D)/$(<F)' '$@'; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
454 |
fi; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
455 |
else \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
456 |
if [ -L '$<' ]; then \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
457 |
$(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
|
458 |
exit 1; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
459 |
fi; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
460 |
$(CP) -f '$<' '$@'; \ |
d20a4165e3d2
8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents:
21759
diff
changeset
|
461 |
fi |
20363 | 462 |
endef |
14111 | 463 |
else ifeq ($(OPENJDK_TARGET_OS),macosx) |
20363 | 464 |
# On mac, extended attributes sometimes creep into the source files, which may later |
465 |
# cause the creation of ._* files which confuses testing. Clear these with xattr if |
|
466 |
# set. Some files get their write permissions removed after being copied to the |
|
467 |
# output dir. When these are copied again to images, xattr would fail. By only clearing |
|
468 |
# attributes when they are present, failing on this is avoided. |
|
469 |
define install-file |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
470 |
$(MKDIR) -p '$(@D)' |
16580
6acb502beafa
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
16419
diff
changeset
|
471 |
$(CP) -fRP '$<' '$@' |
6acb502beafa
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
16419
diff
changeset
|
472 |
if [ -n "`$(XATTR) -l '$@'`" ]; then $(XATTR) -c '$@'; fi |
20363 | 473 |
endef |
14111 | 474 |
else |
25854 | 475 |
# Running mkdir and cp in the same shell speeds up copy intensive tasks in Cygwin |
476 |
# significantly. |
|
20363 | 477 |
define install-file |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
478 |
$(MKDIR) -p '$(@D)' && $(CP) -fP '$<' '$@' |
20363 | 479 |
endef |
14111 | 480 |
endif |
481 |
||
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
482 |
################################################################################ |
15051
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14279
diff
changeset
|
483 |
# Convenience functions for working around make's limitations with $(filter ). |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
484 |
containing = \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
485 |
$(strip $(foreach v,$(strip $2),$(if $(findstring $(strip $1),$v),$v))) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
486 |
not-containing = \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
487 |
$(strip $(foreach v,$(strip $2),$(if $(findstring $(strip $1),$v),,$v))) |
25854 | 488 |
|
489 |
# 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
|
490 |
uniq = \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
491 |
$(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
|
492 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
493 |
# 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
|
494 |
dups = \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
495 |
$(strip $(foreach v, $(sort $1), $(if $(filter-out 1, \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
496 |
$(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
|
497 |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
498 |
# String equals |
28607
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28606
diff
changeset
|
499 |
equals = \ |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28606
diff
changeset
|
500 |
$(and $(findstring $(strip $1),$(strip $2)),\ |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28606
diff
changeset
|
501 |
$(findstring $(strip $2),$(strip $1))) |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
502 |
|
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
503 |
################################################################################ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
504 |
|
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
505 |
ifneq ($(DISABLE_CACHE_FIND), true) |
23984 | 506 |
# In Cygwin, finds are very costly, both because of expensive forks and because |
507 |
# of bad file system caching. Find is used extensively in $(shell) commands to |
|
508 |
# find source files. This makes rerunning make with no or few changes rather |
|
509 |
# expensive. To speed this up, these two macros are used to cache the results |
|
510 |
# of simple find commands for reuse. |
|
511 |
# |
|
512 |
# Runs a find and stores both the directories where it was run and the results. |
|
513 |
# This macro can be called multiple times to add to the cache. Only finds files |
|
514 |
# with no filters. |
|
515 |
# |
|
516 |
# Needs to be called with $(eval ) |
|
517 |
# |
|
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
518 |
# 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
|
519 |
# functionality active unless explicitly disabled to exercise it more. |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
520 |
# |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
521 |
# 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
|
522 |
FIND_CACHE_DIRS := |
23984 | 523 |
# Param 1 - Dirs to find in |
524 |
# Param 2 - (optional) specialization. Normally "-a \( ... \)" expression. |
|
20363 | 525 |
define FillCacheFind |
23984 | 526 |
# 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
|
527 |
# since filter out will then return empty. |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
528 |
FIND_CACHE_NEW_DIRS := $$(filter-out $$(addsuffix /%,\ |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
529 |
- $(FIND_CACHE_DIRS)) $(FIND_CACHE_DIRS), $1) |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
530 |
ifneq ($$(FIND_CACHE_NEW_DIRS), ) |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
531 |
# 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
|
532 |
FIND_CACHE_DIRS += $$(patsubst %/,%, $$(FIND_CACHE_NEW_DIRS)) |
23984 | 533 |
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
|
534 |
endif |
20363 | 535 |
endef |
15051
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14279
diff
changeset
|
536 |
|
23984 | 537 |
# Mimics find by looking in the cache if all of the directories have been cached. |
538 |
# Otherwise reverts to shell find. This is safe to call on all platforms, even if |
|
539 |
# cache is deactivated. |
|
540 |
# |
|
25854 | 541 |
# $1 can be either a directory or a file. If it's a directory, make |
542 |
# sure we have exactly one trailing slash before the wildcard. |
|
23984 | 543 |
# The extra - is needed when FIND_CACHE_DIRS is empty but should be harmless. |
544 |
# |
|
545 |
# Param 1 - Dirs to find in |
|
546 |
# Param 2 - (optional) specialization. Normally "-a \( ... \)" expression. |
|
547 |
define CacheFind |
|
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
548 |
$(if $(filter-out $(addsuffix /%,- $(FIND_CACHE_DIRS)) $(FIND_CACHE_DIRS),$1), \ |
23984 | 549 |
$(shell $(FIND) $1 \( -type f -o -type l \) $2), \ |
25854 | 550 |
$(filter $(addsuffix /%,$(patsubst %/,%,$1)) $1,$(FIND_CACHE))) |
23984 | 551 |
endef |
25854 | 552 |
|
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
553 |
else |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
554 |
# If CacheFind is disabled, just run the find command. |
23984 | 555 |
# Param 1 - Dirs to find in |
556 |
# Param 2 - (optional) specialization. Normally "-a \( ... \)" expression. |
|
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
557 |
define CacheFind |
23984 | 558 |
$(shell $(FIND) $1 \( -type f -o -type l \) $2) |
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
559 |
endef |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
560 |
endif |
15051
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14279
diff
changeset
|
561 |
|
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14279
diff
changeset
|
562 |
################################################################################ |
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14279
diff
changeset
|
563 |
|
25854 | 564 |
define AddFileToCopy |
565 |
# Helper macro for SetupCopyFiles |
|
566 |
# 1 : Source file |
|
567 |
# 2 : Dest file |
|
568 |
# 3 : Variable to add targets to |
|
569 |
# 4 : Macro to call for copy operation |
|
570 |
$2: $1 |
|
571 |
$(ECHO) $(LOG_INFO) Copying $$(patsubst $(OUTPUT_ROOT)/%,%,$$@) |
|
572 |
$$($$(strip $4)) |
|
573 |
||
574 |
$3 += $2 |
|
575 |
endef |
|
576 |
||
28902
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
577 |
# 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
|
578 |
# processing instead of copying. |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
579 |
# |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
580 |
# 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
|
581 |
# 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
|
582 |
# |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
583 |
# Remaining parameters are named arguments. These include: |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
584 |
# SRC : Source root dir (defaults to dir of first file) |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
585 |
# DEST : Dest root dir |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
586 |
# 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
|
587 |
# Must be in SRC. |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
28901
diff
changeset
|
588 |
# 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
|
589 |
# 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
|
590 |
# Default is 'install-file' |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
591 |
SetupCopyFiles = $(NamedParamsMacroTemplate) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29304
diff
changeset
|
592 |
define SetupCopyFilesBody |
25854 | 593 |
|
594 |
ifeq ($$($1_MACRO), ) |
|
595 |
$1_MACRO := install-file |
|
596 |
endif |
|
597 |
||
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
598 |
# 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
|
599 |
ifeq ($$($1_SRC), ) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
600 |
$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
|
601 |
endif |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
602 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
603 |
# 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
|
604 |
$1_SRC := $$(patsubst %/,%,$$($1_SRC)) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27595
diff
changeset
|
605 |
|
25854 | 606 |
$$(foreach f, $$(patsubst $$($1_SRC)/%,%,$$($1_FILES)), \ |
607 |
$$(eval $$(call AddFileToCopy, $$($1_SRC)/$$f, \ |
|
608 |
$$($1_DEST)/$$(if $$($1_FLATTEN),$$(notdir $$f),$$f), $1, $$($1_MACRO)))) |
|
609 |
||
610 |
endef |
|
611 |
||
612 |
################################################################################ |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
613 |
# ShellQuote |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
614 |
# |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
615 |
# 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
|
616 |
# that the contents survives being given to the shell. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
617 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
618 |
ShellQuote = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
619 |
$(SQUOTE)$(subst $(SQUOTE),$(SQUOTE)\$(SQUOTE)$(SQUOTE),$(strip $1))$(SQUOTE) |
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 |
################################################################################ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
622 |
# Write to and read from file |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
623 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
624 |
# Param 1 - File to read |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
625 |
ReadFile = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
626 |
$(shell $(CAT) $1) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
627 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
628 |
# Param 1 - Text to write |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
629 |
# Param 2 - File to write to |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
630 |
# Use printf to get consistent behavior on all platforms. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
631 |
WriteFile = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
632 |
$(shell $(PRINTF) "%s" $(call ShellQuote, $1) > $2) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
633 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
634 |
################################################################################ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
635 |
# DependOnVariable |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
636 |
# |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28906
diff
changeset
|
637 |
# 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
|
638 |
# 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
|
639 |
# 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
|
640 |
# 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
|
641 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
642 |
# path/to/some-file: $(call DependOnVariable, SOME_VAR) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
643 |
# echo $(SOME_VAR) > $@ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
644 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
645 |
# 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
|
646 |
# |
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 |
# 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
|
649 |
DependOnVariableDirName = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
650 |
$(strip $(subst $(SRC_ROOT)/,,\ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
651 |
$(if $(filter /%, $(firstword $(MAKEFILE_LIST))), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
652 |
$(firstword $(MAKEFILE_LIST)), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
653 |
$(CURDIR)/$(firstword $(MAKEFILE_LIST))))) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
654 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
655 |
# 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
|
656 |
# unless parameter 2 is given. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
657 |
# Param 1 - Name of variable |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
658 |
# Param 2 - (optional) name of file to store value in |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
659 |
DependOnVariableFileName = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
660 |
$(strip $(if $(strip $2), $2, \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
661 |
$(MAKESUPPORT_OUTPUTDIR)/vardeps/$(DependOnVariableDirName)/$(strip $1).vardeps)) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
662 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
663 |
# Does the actual work with parameters stripped. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
664 |
# 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
|
665 |
# else print a new file. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
666 |
# 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
|
667 |
# Param 1 - Name of variable |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
668 |
# Param 2 - (optional) name of file to store value in |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
669 |
DependOnVariableHelper = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
670 |
$(strip $(if $(and $(wildcard $(call DependOnVariableFileName, $1, $2)),\ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
671 |
$(call equals, $(strip $($1)), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
672 |
$(call ReadFile, $(call DependOnVariableFileName, $1, $2)))),,\ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
673 |
$(call MakeDir, $(dir $(call DependOnVariableFileName, $1, $2))) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
674 |
$(if $(findstring $(LOG_LEVEL), trace), \ |
28607
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28606
diff
changeset
|
675 |
$(info Variable $1: >$(strip $($1))<) \ |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28606
diff
changeset
|
676 |
$(info File: >$(call ReadFile, $(call DependOnVariableFileName, $1, $2))<)) \ |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
677 |
$(call WriteFile, $($1), $(call DependOnVariableFileName, $1, $2))) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
678 |
$(call DependOnVariableFileName, $1, $2)) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
679 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
680 |
# Main macro |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
681 |
# Param 1 - Name of variable |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
682 |
# Param 2 - (optional) name of file to store value in |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
683 |
DependOnVariable = \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
684 |
$(call DependOnVariableHelper,$(strip $1),$(strip $2)) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
685 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
27595
diff
changeset
|
686 |
################################################################################ |
25854 | 687 |
|
688 |
# Hook to include the corresponding custom file, if present. |
|
689 |
$(eval $(call IncludeCustomExtension, , common/MakeBase.gmk)) |
|
690 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
691 |
endif # _MAKEBASE_GMK |