MakeBase.gmk revision 2333:5a206e2ff241
11539Srgrimes#
21539Srgrimes# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
31539Srgrimes# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
41539Srgrimes#
51539Srgrimes# This code is free software; you can redistribute it and/or modify it
61539Srgrimes# under the terms of the GNU General Public License version 2 only, as
71539Srgrimes# published by the Free Software Foundation.  Oracle designates this
81539Srgrimes# particular file as subject to the "Classpath" exception as provided
91539Srgrimes# by Oracle in the LICENSE file that accompanied this code.
101539Srgrimes#
111539Srgrimes# This code is distributed in the hope that it will be useful, but WITHOUT
121539Srgrimes# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
131539Srgrimes# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
141539Srgrimes# version 2 for more details (a copy is included in the LICENSE file that
151539Srgrimes# accompanied this code).
161539Srgrimes#
171539Srgrimes# You should have received a copy of the GNU General Public License version
181539Srgrimes# 2 along with this work; if not, write to the Free Software Foundation,
191539Srgrimes# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
201539Srgrimes#
211539Srgrimes# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
221539Srgrimes# or visit www.oracle.com if you need additional information or have any
231539Srgrimes# questions.
241539Srgrimes#
251539Srgrimes
261539Srgrimes################################################################
271539Srgrimes#
281539Srgrimes# Setup common utility functions.
291539Srgrimes#
301539Srgrimes################################################################
311539Srgrimes
321539Srgrimesifndef _MAKEBASE_GMK
3323657Speter_MAKEBASE_GMK := 1
3455033Sbde
351539Srgrimesifeq ($(wildcard $(SPEC)),)
361539Srgrimes  $(error MakeBase.gmk needs SPEC set to a proper spec.gmk)
371539Srgrimesendif
381539Srgrimes
391539Srgrimes# By defining this pseudo target, make will automatically remove targets
401539Srgrimes# if their recipe fails so that a rebuild is automatically triggered on the
4193514Smike# next make invocation.
421539Srgrimes.DELETE_ON_ERROR:
43123257Smarcel
4493514Smike################################################################################
451539Srgrimes# Definitions for special characters
46102227Smike################################################################################
47102227Smike
48102227Smike# When calling macros, the spaces between arguments are
4993514Smike# often semantically important! Sometimes we need to subst
5093514Smike# spaces and commas, therefore we need the following macros.
51108381SmikeX:=
52108381SmikeSPACE:=$(X) $(X)
53108381SmikeCOMMA:=,
54108381SmikeDOLLAR:=$$
55108381SmikeHASH:=\#
56108381SmikeLEFT_PAREN:=(
57108381SmikeRIGHT_PAREN:=)
58108381SmikeSQUOTE:='
59108381Smike#'
60108381SmikeDQUOTE:="
61102227Smike#"
62102227Smikedefine NEWLINE
63102227Smike
6493514Smike
6593514Smikeendef
66102227Smike
67102227Smike# In GNU Make 4.0 and higher, there is a file function for writing to files.
68102227Smikeifeq (4.0, $(firstword $(sort 4.0 $(MAKE_VERSION))))
6993514Smike  HAS_FILE_FUNCTION := true
7093514Smikeendif
71102227Smike
72108381Smike##############################
73102227Smike# Functions
7493514Smike##############################
7593514Smike
76108381Smike### Debug functions
77108381Smike
78108381Smike# Prints the name and value of a variable
79108381SmikePrintVar = \
8093514Smike    $(info $(strip $1) >$($(strip $1))<)
811539Srgrimes
821539Srgrimes### Functions for timers
831539Srgrimes
841539Srgrimes# Store the build times in this directory.
8598269SwollmanBUILDTIMESDIR=$(OUTPUT_ROOT)/make-support/build-times
8637566Sbde
8737566Sbde# Record starting time for build of a sub repository.
8837566Sbdedefine RecordStartTime
8937566Sbde	$(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) && \
9037509Sdt	$(DATE) '+%Y-%m-%d %H:%M:%S' > $(BUILDTIMESDIR)/build_time_start_$(strip $1)_human_readable
9137509Sdtendef
92103729Swollman
93103729Swollman# Record ending time and calculate the difference and store it in a
94103729Swollman# easy to read format. Handles builds that cross midnight. Expects
95103729Swollman# that a build will never take 24 hours or more.
96103729Swollmandefine RecordEndTime
97103729Swollman	$(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)
98103729Swollman	$(DATE) '+%Y-%m-%d %H:%M:%S' > $(BUILDTIMESDIR)/build_time_end_$(strip $1)_human_readable
99103729Swollman	$(ECHO) `$(CAT) $(BUILDTIMESDIR)/build_time_start_$(strip $1)` `$(CAT) $(BUILDTIMESDIR)/build_time_end_$(strip $1)` $1 | \
100103729Swollman	    $(NAWK) '{ F=$$7; T=$$14; if (F > T) { T+=3600*24 }; D=T-F; H=int(D/3600); \
101103729Swollman	    M=int((D-H*3600)/60); S=D-H*3600-M*60; printf("%02d:%02d:%02d %s\n",H,M,S,$$15); }' \
102103729Swollman	    > $(BUILDTIMESDIR)/build_time_diff_$(strip $1)
103103729Swollmanendef
104103729Swollman
105103729Swollman# Hook to be called when starting to execute a top-level target
106153005Sdavidxudefine TargetEnter
107103729Swollman	$(PRINTF) "## Starting $(patsubst %-only,%,$@)\n"
108103729Swollman	$(call RecordStartTime,$(patsubst %-only,%,$@))
109103729Swollmanendef
110180360Sdavidxu
111153005Sdavidxu# Hook to be called when finish executing a top-level target
112103729Swollmandefine TargetExit
113103729Swollman	$(call RecordEndTime,$(patsubst %-only,%,$@))
114175431Sdavidxu	$(PRINTF) "## Finished $(patsubst %-only,%,$@) (build time %s)\n\n" \
115103729Swollman	    "`$(CAT) $(BUILDTIMESDIR)/build_time_diff_$(patsubst %-only,%,$@) | $(CUT) -f 1 -d ' '`"
116103729Swollmanendef
117103729Swollman
118103729Swollman################################################################################
119103729Swollman# This macro translates $ into \$ to protect the $ from expansion in the shell.
120103729Swollman# To make this macro resilient against already escaped strings, first remove
121103729Swollman# any present escapes before escaping so that no double escapes are added.
122103729SwollmanEscapeDollar = $(subst $$,\$$,$(subst \$$,$$,$(strip $1)))
123103729Swollman
124103729Swollman################################################################################
125103729Swollman# This macro works just like EscapeDollar above, but for #.
126103729SwollmanEscapeHash = $(subst \#,\\\#,$(subst \\\#,\#,$(strip $1)))
127103729Swollman
128103729Swollman################################################################################
129103729Swollman# This macro translates $ into $$ to protect the string from make itself.
130103729SwollmanDoubleDollar = $(subst $$,$$$$,$(strip $1))
131103729Swollman
132103729Swollman################################################################################
133103729Swollman# ListPathsSafely can be used to print command parameters to a file. This is
134103729Swollman# typically done if the command line lenght risk being too long for the
135103729Swollman# OS/shell. In later make versions, the file function can be used for this
136103729Swollman# purpose. For earlier versions, a more complex implementation is provided.
137103729Swollman#
138103729Swollman# The function ListPathsSafely can be called either directly or, more commonly
139103729Swollman# from a recipe line. If called from a recipe, it will be executed in the
140103729Swollman# evaluation phase of that recipe, which means that it will write to the file
141103729Swollman# before any other line in the recipe has been run.
142103729Swollmanifeq ($(HAS_FILE_FUNCTION), true)
143103729Swollman  # Param 1 - Name of variable containing paths/arguments to output
144103729Swollman  # Param 2 - File to print to
145103729Swollman  # Param 3 - Set to true to append to file instead of overwriting
146103729Swollman  define ListPathsSafely
147103729Swollman    $$(call MakeDir, $$(dir $$(strip $2)))
148103729Swollman    $$(file $$(if $$(filter true, $$(strip $3)),>>,>) \
149103729Swollman        $$(strip $2),$$(subst $$(SPACE),$$(NEWLINE),$$(strip $$($$(strip $1)))))
150103729Swollman  endef
151103729Swollman
152103729Swollmanelse # HAS_FILE_FUNCTION = false
153103729Swollman
154105045Smike  $(eval compress_paths = \
155103929Swollman      $(strip $(shell $(CAT) $(SRC_ROOT)/make/common/support/ListPathsSafely-pre-compress.incl)))
156103729Swollman  compress_paths += \
157103729Swollman      $(subst $(SRC_ROOT),X97, \
158103729Swollman      $(subst $(OUTPUT_ROOT),X98, \
159103729Swollman      $(subst X,X00, \
160103729Swollman      $(subst $(SPACE),\n,$(strip $1)))))
161103729Swollman  $(eval compress_paths += \
162103729Swollman      $(strip $(shell $(CAT) $(SRC_ROOT)/make/common/support/ListPathsSafely-post-compress.incl)))
163103729Swollman
164103729Swollman  decompress_paths=$(SED) -f $(SRC_ROOT)/make/common/support/ListPathsSafely-uncompress.sed \
165103729Swollman      -e 's|X99|\\n|g' \
166103729Swollman      -e 's|X98|$(OUTPUT_ROOT)|g' -e 's|X97|$(SRC_ROOT)|g' \
167103729Swollman      -e 's|X00|X|g'
168103729Swollman
169103729Swollman  ListPathsSafely_IfPrintf = \
170103729Swollman      $(if $(word $3,$($(strip $1))), \
171103729Swollman          $(shell $(PRINTF) -- "$(strip $(call EscapeDollar, \
172103729Swollman              $(call compress_paths, $(wordlist $3,$4,$($(strip $1))))))\n" \
173103729Swollman              | $(decompress_paths) >> $2))
174103729Swollman
175103729Swollman  # Param 1 - Name of variable containing paths/arguments to output
176103729Swollman  # Param 2 - File to print to
177103729Swollman  # Param 3 - Set to true to append to file instead of overwriting
178103729Swollman  define ListPathsSafely
179103729Swollman    ifneq (,$$(word 30001,$$($$(strip $1))))
180103729Swollman      $$(error Cannot list safely more than 30000 paths. $1 has $$(words $$($$(strip $1))) paths!)
181103729Swollman    endif
182103729Swollman    $$(call MakeDir, $$(dir $2))
183103729Swollman    ifneq ($$(strip $3), true)
184103729Swollman      $$(shell $(RM) $$(strip $2))
185103729Swollman    endif
186103729Swollman
187103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,1,250)
188103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,251,500)
189103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,501,750)
190103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,751,1000)
191103729Swollman
192103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,1001,1250)
193103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,1251,1500)
194103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,1501,1750)
195103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,1751,2000)
196103729Swollman
197103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,2001,2250)
198103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,2251,2500)
199103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,2501,2750)
200103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,2751,3000)
201103729Swollman
202103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,3001,3250)
203103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,3251,3500)
204103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,3501,3750)
205103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,3751,4000)
206103729Swollman
207103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,4001,4250)
208103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,4251,4500)
209103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,4501,4750)
210103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,4751,5000)
211103729Swollman
212103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,5001,5250)
213103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,5251,5500)
214103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,5501,5750)
215103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,5751,6000)
216103729Swollman
217103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,6001,6250)
218103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,6251,6500)
219103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,6501,6750)
220103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,6751,7000)
221103729Swollman
222103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,7001,7250)
223103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,7251,7500)
224103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,7501,7750)
225103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,7751,8000)
226103729Swollman
227103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,8001,8250)
228103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,8251,8500)
229103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,8501,8750)
230103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,8751,9000)
231103729Swollman
232103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,9001,9250)
233103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,9251,9500)
234103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,9501,9750)
235103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,9751,10000)
236103729Swollman
237103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,10001,10250)
238103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,10251,10500)
239103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,10501,10750)
240103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,10751,11000)
241103729Swollman
242103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,11001,11250)
243103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,11251,11500)
244103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,11501,11750)
245103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,11751,12000)
246103729Swollman
247103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,12001,12250)
248103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,12251,12500)
249103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,12501,12750)
250103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,12751,13000)
251103729Swollman
252103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,13001,13250)
253103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,13251,13500)
254103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,13501,13750)
255103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,13751,14000)
256103729Swollman
257103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,14001,14250)
258103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,14251,14500)
259103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,14501,14750)
260103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,14751,15000)
261103729Swollman
262103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,15001,15250)
263103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,15251,15500)
264103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,15501,15750)
265103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,15751,16000)
266103729Swollman
267103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,16001,16250)
268103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,16251,16500)
269103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,16501,16750)
270103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,16751,17000)
271106055Swollman
272106055Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,17001,17250)
273106055Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,17251,17500)
274103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,17501,17750)
275103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,17751,18000)
276103729Swollman
277103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,18001,18250)
278103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,18251,18500)
279103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,18501,18750)
280103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,18751,19000)
281103729Swollman
282103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,19001,19250)
283103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,19251,19500)
284103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,19501,19750)
285103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,19751,20000)
286103729Swollman
287103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,20001,20250)
288103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,20251,20500)
289103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,20501,20750)
290103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,20751,21000)
291103729Swollman
292103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,21001,21250)
293103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,21251,21500)
294103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,21501,21750)
295103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,21751,22000)
296103729Swollman
297165230Spjd    $$(call ListPathsSafely_IfPrintf,$1,$2,22001,22250)
298165230Spjd    $$(call ListPathsSafely_IfPrintf,$1,$2,22251,22500)
299165230Spjd    $$(call ListPathsSafely_IfPrintf,$1,$2,22501,22750)
300103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,22751,23000)
301103729Swollman
302103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,23001,23250)
303103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,23251,23500)
304103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,23501,23750)
305103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,23751,24000)
306103729Swollman
307103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,24001,24250)
308103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,24251,24500)
309103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,24501,24750)
310103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,24751,25000)
311103729Swollman
312103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,25001,25250)
313103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,25251,25500)
314103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,25501,25750)
315103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,25751,26000)
316103729Swollman
317103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,26001,26250)
318103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,26251,26500)
319103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,26501,26750)
320103729Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,26751,27000)
3211539Srgrimes
32298269Swollman    $$(call ListPathsSafely_IfPrintf,$1,$2,27001,27250)
32393032Simp    $$(call ListPathsSafely_IfPrintf,$1,$2,27251,27500)
32493032Simp    $$(call ListPathsSafely_IfPrintf,$1,$2,27501,27750)
32593032Simp    $$(call ListPathsSafely_IfPrintf,$1,$2,27751,28000)
32693032Simp
32793032Simp    $$(call ListPathsSafely_IfPrintf,$1,$2,28001,28250)
32893032Simp    $$(call ListPathsSafely_IfPrintf,$1,$2,28251,28500)
329194262Sjhb    $$(call ListPathsSafely_IfPrintf,$1,$2,28501,28750)
33093032Simp    $$(call ListPathsSafely_IfPrintf,$1,$2,28751,29000)
33193032Simp
33293032Simp    $$(call ListPathsSafely_IfPrintf,$1,$2,29001,29250)
33393032Simp    $$(call ListPathsSafely_IfPrintf,$1,$2,29251,29500)
33493032Simp    $$(call ListPathsSafely_IfPrintf,$1,$2,29501,29750)
33593032Simp    $$(call ListPathsSafely_IfPrintf,$1,$2,29751,30000)
33693032Simp  endef
33793032Simpendif # HAS_FILE_FUNCTION
33893032Simp
33993032Simp################################################################################
34093032Simp# The source tips can come from the Mercurial repository, or in the files
34193032Simp# $(HGTIP_FILENAME) which contains the tip but is also positioned in the same
34293032Simp# directory as the original .hg directory. The hgtip files are created in
34393032Simp# CreateHgtipFiles.gmk.
34493032SimpHGTIP_FILENAME := .hgtip
34593032SimpFindAllReposAbs = \
34693032Simp    $(strip $(sort $(dir $(filter-out $(SRC_ROOT)/build/%, $(wildcard \
34793032Simp        $(addprefix $(SRC_ROOT)/, \
34893032Simp            .hg */.hg */*/.hg */*/.hg */*/*/.hg \
34993032Simp            .hgtip */.hgtip */*/.hgtip */*/.hgtip */*/*/.hgtip \
35093032Simp        ) \
35193032Simp    )))))
35224896Sbde
35324896SbdeFindAllReposRel = \
35493032Simp    $(strip $(subst $(SRC_ROOT)/,.,$(patsubst $(SRC_ROOT)/%/, %, $(FindAllReposAbs))))
35524896Sbde
35693032Simp# Emit the repo:tip pairs to $@, but only if they changed since last time
35793032Simpdefine GetSourceTips
35893032Simp	$(CD) $(SRC_ROOT) ; \
35993032Simp	for i in $(FindAllReposRel) IGNORE ; do \
36093032Simp	  if [ "$${i}" = "IGNORE" ] ; then \
36193032Simp	    continue; \
36293032Simp	  elif [ -d $${i}/.hg -a "$(HG)" != "" ] ; then \
36393032Simp	    $(PRINTF) " %s:%s" \
36493032Simp	        "$${i}" `$(HG) tip --repository $${i} --template '{node|short}\n'` ; \
36593032Simp	  elif [ -f $${i}/$(HGTIP_FILENAME) ] ; then \
36693032Simp	    $(PRINTF) " %s:%s" \
36793032Simp	        "$${i}" `$(CAT) $${i}/$(HGTIP_FILENAME)` ; \
36893032Simp	  fi; \
36993032Simp	done > $@.tmp
370146186Sdelphij	$(PRINTF) "\n" >> $@.tmp
37193032Simp	if [ ! -f $@ ] || [ "`$(CAT) $@`" != "`$(CAT) $@.tmp`" ]; then \
37293032Simp	  $(MV) $@.tmp $@ ; \
3731539Srgrimes	else \
374100140Swollman	  $(RM) $@.tmp ; \
375106812Smike	fi
37698269Swollmanendef
377126141Sache
378126141Sache################################################################################
379100145Swollman
380100145Swollmandefine SetupLogging
381100145Swollman  ifeq ($$(LOG_LEVEL), trace)
382100145Swollman    # Shell redefinition trick inspired by http://www.cmcrossroads.com/ask-mr-make/6535-tracing-rule-execution-in-gnu-make
383126141Sache    # For each target executed, will print
38498269Swollman    # Building <TARGET> (from <FIRST PREREQUISITE>) (<ALL NEWER PREREQUISITES> newer)
38598269Swollman    # but with a limit of 20 on <ALL NEWER PREREQUISITES>, to avoid cluttering logs too much
38698269Swollman    # (and causing a crash on Cygwin).
387106812Smike    # Default shell seems to always be /bin/sh. Must override with bash to get this to work on Solaris.
388100140Swollman    # Only use time if it's GNU time which supports format and output file.
389100140Swollman    WRAPPER_SHELL := $$(BASH) $$(SRC_ROOT)/common/bin/shell-tracer.sh $$(if $$(findstring yes,$$(IS_GNU_TIME)),$$(TIME),-) $$(OUTPUT_ROOT)/build-trace-time.log $$(SHELL)
39098269Swollman    SHELL = $$(warning $$(if $$@,Building $$@,Running shell command) $$(if $$<, (from $$<))$$(if $$?, ($$(wordlist 1, 20, $$?) $$(if $$(wordlist 21, 22, $$?), ... [in total $$(words $$?) files]) newer)))$$(WRAPPER_SHELL)
39198269Swollman  endif
39298269Swollman  # The warn level can never be turned off
39398269Swollman  LogWarn = $$(info $$(strip $$1))
39498269Swollman  LOG_WARN :=
39598269Swollman  ifneq ($$(findstring $$(LOG_LEVEL), info debug trace),)
39698269Swollman    LogInfo = $$(info $$(strip $$1))
39798269Swollman    LOG_INFO :=
398106812Smike  else
39998269Swollman    LogInfo =
400106812Smike    LOG_INFO := > /dev/null
40198269Swollman  endif
40298269Swollman  ifneq ($$(findstring $$(LOG_LEVEL), debug trace),)
40398269Swollman    LogDebug = $$(info $$(strip $$1))
40498269Swollman    LOG_DEBUG :=
405106812Smike  else
406106812Smike    LogDebug =
407176607Sru    LOG_DEBUG := > /dev/null
408106812Smike  endif
40998269Swollman  ifneq ($$(findstring $$(LOG_LEVEL), trace),)
410119141Swollman    LogTrace = $$(info $$(strip $$1))
41198269Swollman    LOG_TRACE :=
41298269Swollman  else
41398269Swollman    LogTrace =
41498269Swollman    LOG_TRACE := > /dev/null
415189351Sdas  endif
416189351Sdasendef
417189351Sdas
418189351Sdas# Make sure logging is setup for everyone that includes MakeBase.gmk.
419189351Sdas$(eval $(call SetupLogging))
420189351Sdas
421189351Sdas################################################################################
422189351Sdas# Creates a sequence of increasing numbers (inclusive).
423189351Sdas# Param 1 - starting number
424189351Sdas# Param 2 - ending number
425189351Sdassequence = \
426189351Sdas    $(wordlist $1, $2, $(strip \
427189351Sdas        $(eval SEQUENCE_COUNT :=) \
428189351Sdas        $(call _sequence-do,$(strip $2))))
429189351Sdas
430189351Sdas_sequence-do = \
431189351Sdas    $(if $(word $1, $(SEQUENCE_COUNT)),, \
432189351Sdas      $(eval SEQUENCE_COUNT += .) \
433189351Sdas      $(words $(SEQUENCE_COUNT)) \
434189351Sdas      $(call _sequence-do,$1))
435189351Sdas
436189351Sdas################################################################################
437189351Sdas
438189351SdasMAX_PARAMS := 35
439189351SdasPARAM_SEQUENCE := $(call sequence, 2, $(MAX_PARAMS))
440189351Sdas
441100140Swollman# Template for creating a macro taking named parameters. To use it, assign the
442100140Swollman# template to a variable with the name you want for your macro, using '='
443100140Swollman# assignment. Then define a macro body with the suffix "Body". The Body macro
444103729Swollman# should take 1 parameter which should be a unique string for that invocation
445100140Swollman# of the macro.
446100140Swollman# Ex:
447103012Stjr# SetupFoo = $(NamedParamsMacroTemplate)
448100140Swollman# define SetupFooBody
449100140Swollman#   # do something
45098269Swollman#   # access parameters as $$($1_BAR)
45198269Swollman# endef
45298269Swollman# Call it like this
45398269Swollman# $(eval $(call SetupFoo, BUILD_SOMETHING, \
45498269Swollman#     BAR := some parameter value, \
455106812Smike# ))
45698269Swollmandefine NamedParamsMacroTemplate
45798269Swollman  $(if $($(MAX_PARAMS)),$(error Internal makefile error: \
45898269Swollman      Too many named arguments to macro, please update MAX_PARAMS in MakeBase.gmk))
45998269Swollman  # Iterate over 2 3 4... and evaluate the named parameters with $1_ as prefix
46098269Swollman  $(foreach i,$(PARAM_SEQUENCE), $(if $(strip $($i)),\
461138659Strhodes    $(strip $1)_$(strip $(call DoubleDollar, $($i))))$(NEWLINE))
462138659Strhodes  # Debug print all named parameter names and values
463138659Strhodes  $(if $(findstring $(LOG_LEVEL),debug trace), \
464138659Strhodes    $(info $0 $(strip $1) $(foreach i,$(PARAM_SEQUENCE), \
465138659Strhodes      $(if $(strip $($i)),$(NEWLINE) $(strip [$i] $(if $(filter $(LOG_LEVEL), trace), \
466138659Strhodes        $($i), $(wordlist 1, 20, $($(i))) $(if $(word 21, $($(i))), ...)))))))
46798269Swollman
46898269Swollman  $(if $(DEBUG_$(strip $1)),
46998269Swollman    $(info -------- <<< Begin expansion of $(strip $1)) \
47098269Swollman    $(info $(call $(0)Body,$(strip $1))) \
471189817Sdas    $(info -------- >>> End expansion of $(strip $1)) \
472106812Smike  )
473106812Smike
474106812Smike  $(call $(0)Body,$(strip $1))
475106812Smikeendef
476106812Smike
477106812Smike################################################################################
478106812Smike# Make directory without forking mkdir if not needed
479106812Smike# 1: List of directories to create
480189817SdasMakeDir = \
481189351Sdas    $(strip \
482189351Sdas        $(eval MakeDir_dirs_to_make := $(strip $(foreach d, $1, $(if $(wildcard $d), , $d)))) \
483189351Sdas        $(if $(MakeDir_dirs_to_make), $(shell $(MKDIR) -p $(MakeDir_dirs_to_make))) \
484189351Sdas    )
485189351Sdas
486189351Sdas################################################################################
487189351Sdas# Assign a variable only if it is empty
48898269Swollman# Param 1 - Variable to assign
4891539Srgrimes# Param 2 - Value to assign
49093032SimpSetIfEmpty = \
49193032Simp    $(if $($(strip $1)),,$(eval $(strip $1) := $2))
492106065Swollman
49398269Swollman################################################################################
49493032Simp
49593032Simpifeq ($(OPENJDK_TARGET_OS),solaris)
49693032Simp  # On Solaris, if the target is a symlink and exists, cp won't overwrite.
49793032Simp  # Cp has to operate in recursive mode to allow for -P flag, to preserve soft links. If the
498189817Sdas  # name of the target file differs from the source file, rename after copy.
49993032Simp  # If the source and target parent directories are the same, recursive copy doesn't work
50093032Simp  # so we fall back on regular copy, which isn't preserving symlinks.
501117105Sbde  define install-file
502175220Sjhb	$(MKDIR) -p '$(@D)'
50393032Simp	$(RM) '$@'
50493032Simp	if [ "$(@D)" != "$(<D)" ]; then \
50593032Simp	  $(CP) -f -r -P '$<' '$(@D)'; \
50693032Simp	  if [ "$(@F)" != "$(<F)" ]; then \
507183390Speter	    $(MV) '$(@D)/$(<F)' '$@'; \
50893032Simp	  fi; \
50993032Simp	else \
51093032Simp	  if [ -L '$<' ]; then \
51193032Simp	    $(ECHO) "Source file is a symlink and target is in the same directory: $< $@" ; \
51293032Simp	    exit 1; \
51393032Simp	  fi; \
51493032Simp	  $(CP) -f '$<' '$@'; \
51593032Simp	fi
516195458Strasz  endef
517189351Sdaselse ifeq ($(OPENJDK_TARGET_OS),macosx)
51893032Simp  # On mac, extended attributes sometimes creep into the source files, which may later
519189351Sdas  # cause the creation of ._* files which confuses testing. Clear these with xattr if
520189351Sdas  # set. Some files get their write permissions removed after being copied to the
521143952Sdas  # output dir. When these are copied again to images, xattr would fail. By only clearing
52293032Simp  # attributes when they are present, failing on this is avoided.
523143952Sdas  #
524143952Sdas  # If copying a soft link to a directory, need to delete the target first to avoid
525103729Swollman  # weird errors.
52693032Simp  define install-file
527103729Swollman	$(MKDIR) -p '$(@D)'
528103729Swollman	$(RM) '$@'
52993032Simp	$(CP) -fRP '$<' '$@'
530103729Swollman	if [ -n "`$(XATTR) -l '$@'`" ]; then $(XATTR) -c '$@'; fi
53193032Simp  endef
532103729Swollmanelse
533103729Swollman  # Running mkdir and cp in the same shell speeds up copy intensive tasks in Cygwin
53493032Simp  # significantly.
53593032Simp  define install-file
53693032Simp	$(call MakeDir, $(@D))
53793032Simp	$(CP) -fP '$<' '$@'
53893032Simp  endef
53993032Simpendif
54093032Simp
54193032Simp################################################################################
54293032Simp# Take two paths and return the path of the last common directory.
54393032Simp# Ex: /foo/bar/baz, /foo/bar/banan -> /foo/bar
54493032Simp#     foo/bar/baz, /foo/bar -> <empty>
54593032Simp#
54693032Simp# The x prefix is used to preserve the presence of the initial slash
54793032Simp#
54893032Simp# $1 - Path to compare
54993032Simp# $2 - Other path to compare
550103867SmikeFindCommonPathPrefix = \
551103867Smike    $(patsubst x%,%,$(subst $(SPACE),/,$(strip \
552103867Smike        $(call FindCommonPathPrefixHelper, \
55393032Simp            $(subst /,$(SPACE),x$(strip $1)), $(subst /,$(SPACE),x$(strip $2))) \
554103867Smike    )))
555103867Smike
55693032SimpFindCommonPathPrefixHelper = \
55793032Simp    $(if $(call equals, $(firstword $1), $(firstword $2)), \
55893032Simp      $(firstword $1) \
55993032Simp      $(call FindCommonPathPrefixHelper, \
560103729Swollman          $(wordlist 2, $(words $1), $1), $(wordlist 2, $(words $2), $2) \
56193032Simp      ) \
562103729Swollman    )
563103729Swollman
56493032Simp# Convert a partial path into as many directory levels of ../, removing
56593032Simp# leading and following /.
566189817Sdas# Ex: foo/bar/baz/ -> ../../..
56793032Simp#     foo/bar -> ../..
56893032Simp#     /foo -> ..
56993032SimpDirToDotDot = \
57093032Simp    $(subst $(SPACE),/,$(foreach d, $(subst /,$(SPACE),$1),..))
57193032Simp
57293032Simp# Computes the relative path from a directory to a file
57393032Simp# $1 - File to compute the relative path to
574107913Sdillon# $2 - Directory to compute the relative path from
57593032SimpRelativePath = \
57693032Simp    $(eval $1_prefix := $(call FindCommonPathPrefix, $1, $2)) \
57793032Simp    $(eval $1_dotdots := $(call DirToDotDot, $(patsubst $($(strip $1)_prefix)/%, %, $2))) \
57893032Simp    $(eval $1_suffix := $(patsubst $($(strip $1)_prefix)/%, %, $1)) \
57993032Simp    $($(strip $1)_dotdots)/$($(strip $1)_suffix)
58093032Simp
58123657Speter################################################################################
582126142Sache# link-file-* works similarly to install-file but creates a symlink instead.
583126142Sache# There are two versions, either creating a relative or an absolute link. Be
58442518Smsmith# careful when using this on Windows since the symlink created is only valid in
585126142Sache# the unix emulation environment.
58698269Swollmandefine link-file-relative
5871539Srgrimes	$(call MakeDir, $(@D))
5881539Srgrimes	$(RM) $@
5891539Srgrimes	$(LN) -s $(call RelativePath, $<, $(@D)) $@
590endef
591
592define link-file-absolute
593	$(call MakeDir, $(@D))
594	$(RM) $@
595	$(LN) -s $< $@
596endef
597
598################################################################################
599# Filter out duplicate sub strings while preserving order. Keeps the first occurance.
600uniq = \
601    $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1)))
602
603# Returns all whitespace-separated words in $2 where at least one of the
604# whitespace-separated words in $1 is a substring.
605containing = \
606    $(strip \
607        $(foreach v,$(strip $2),\
608          $(call uniq,$(foreach p,$(strip $1),$(if $(findstring $p,$v),$v)))))
609
610# Returns all whitespace-separated words in $2 where none of the
611# whitespace-separated words in $1 is a substring.
612not-containing = \
613    $(strip $(filter-out $(call containing,$1,$2),$2))
614
615# Return a list of all string elements that are duplicated in $1.
616dups = \
617    $(strip $(foreach v, $(sort $1), $(if $(filter-out 1, \
618        $(words $(filter $v, $1))), $v)))
619
620# String equals
621equals = \
622    $(and $(findstring $(strip $1),$(strip $2)),\
623        $(findstring $(strip $2),$(strip $1)))
624
625# Remove a whole list of prefixes
626# $1 - List of prefixes
627# $2 - List of elements to process
628remove-prefixes = \
629    $(strip $(if $1,$(patsubst $(firstword $1)%,%,\
630      $(call remove-prefixes,$(filter-out $(firstword $1),$1),$2)),$2))
631
632# Convert the string given to upper case, without any $(shell)
633# Inspired by http://lists.gnu.org/archive/html/help-make/2013-09/msg00009.html
634uppercase_table := a,A b,B c,C d,D e,E f,F g,G h,H i,I j,J k,K l,L m,M n,N o,O \
635    p,P q,Q r,R s,S t,T u,U v,V w,W x,X y,Y z,Z
636
637uppercase_internal = \
638  $(if $(strip $1), $$(subst $(firstword $1), $(call uppercase_internal, \
639      $(wordlist 2, $(words $1), $1), $2)), $2)
640
641# Convert a string to upper case. Works only on a-z.
642# $1 - The string to convert
643uppercase = \
644  $(strip \
645    $(eval uppercase_result := $(call uppercase_internal, $(uppercase_table), $1)) \
646    $(uppercase_result) \
647  )
648
649################################################################################
650
651ifneq ($(DISABLE_CACHE_FIND), true)
652  # In Cygwin, finds are very costly, both because of expensive forks and because
653  # of bad file system caching. Find is used extensively in $(shell) commands to
654  # find source files. This makes rerunning make with no or few changes rather
655  # expensive. To speed this up, these two macros are used to cache the results
656  # of simple find commands for reuse.
657  #
658  # Runs a find and stores both the directories where it was run and the results.
659  # This macro can be called multiple times to add to the cache. Only finds files
660  # with no filters.
661  #
662  # Needs to be called with $(eval )
663  #
664  # Even if the performance benifit is negligible on other platforms, keep the
665  # functionality active unless explicitly disabled to exercise it more.
666  #
667  # Initialize FIND_CACHE_DIRS with := to make it a non recursively-expanded variable
668  FIND_CACHE_DIRS :=
669  # Param 1 - Dirs to find in
670  # Param 2 - (optional) specialization. Normally "-a \( ... \)" expression.
671  define FillCacheFind
672    # Filter out already cached dirs. The - is needed when FIND_CACHE_DIRS is empty
673    # since filter out will then return empty.
674    FIND_CACHE_NEW_DIRS := $$(filter-out $$(addsuffix /%,\
675        - $(FIND_CACHE_DIRS)) $(FIND_CACHE_DIRS), $1)
676    ifneq ($$(FIND_CACHE_NEW_DIRS), )
677      # Remove any trailing slash from dirs in the cache dir list
678      FIND_CACHE_DIRS += $$(patsubst %/,%, $$(FIND_CACHE_NEW_DIRS))
679      FIND_CACHE := $$(sort $$(FIND_CACHE) $$(shell $(FIND) $$(FIND_CACHE_NEW_DIRS) \( -type f -o -type l \) $2))
680    endif
681  endef
682
683  # Mimics find by looking in the cache if all of the directories have been cached.
684  # Otherwise reverts to shell find. This is safe to call on all platforms, even if
685  # cache is deactivated.
686  #
687  # $1 can be either a directory or a file. If it's a directory, make
688  # sure we have exactly one trailing slash before the wildcard.
689  # The extra - is needed when FIND_CACHE_DIRS is empty but should be harmless.
690  #
691  # Param 1 - Dirs to find in
692  # Param 2 - (optional) specialization. Normally "-a \( ... \)" expression.
693  define CacheFind
694      $(if $(filter-out $(addsuffix /%,- $(FIND_CACHE_DIRS)) $(FIND_CACHE_DIRS),$1), \
695    $(shell $(FIND) $1 \( -type f -o -type l \) $2), \
696        $(filter $(addsuffix /%,$(patsubst %/,%,$1)) $1,$(FIND_CACHE)))
697  endef
698
699else
700  # If CacheFind is disabled, just run the find command.
701  # Param 1 - Dirs to find in
702  # Param 2 - (optional) specialization. Normally "-a \( ... \)" expression.
703  define CacheFind
704    $(shell $(FIND) $1 \( -type f -o -type l \) $2)
705  endef
706endif
707
708################################################################################
709
710define AddFileToCopy
711  # Helper macro for SetupCopyFiles
712  # 1 : Source file
713  # 2 : Dest file
714  # 3 : Variable to add targets to
715  # 4 : Macro to call for copy operation
716  $2: $1
717	$$(call LogInfo, Copying $$(patsubst $(OUTPUT_ROOT)/%,%,$$@))
718	$$($$(strip $4))
719
720  $3 += $2
721endef
722
723# Returns the value of the first argument
724identity = \
725    $(strip $1)
726
727# Setup make rules for copying files, with an option to do more complex
728# processing instead of copying.
729#
730# Parameter 1 is the name of the rule. This name is used as variable prefix,
731# and the targets generated are listed in a variable by that name.
732#
733# Remaining parameters are named arguments. These include:
734#   SRC     : Source root dir (defaults to dir of first file)
735#   DEST    : Dest root dir
736#   FILES   : List of files to copy with absolute paths, or path relative to SRC.
737#             Must be in SRC.
738#   FLATTEN : Set to flatten the directory structure in the DEST dir.
739#   MACRO   : Optionally override the default macro used for making the copy.
740#             Default is 'install-file'
741#   NAME_MACRO : Optionally supply a macro that rewrites the target file name
742#                based on the source file name
743SetupCopyFiles = $(NamedParamsMacroTemplate)
744define SetupCopyFilesBody
745
746  ifeq ($$($1_MACRO), )
747    $1_MACRO := install-file
748  endif
749
750  # Default SRC to the dir of the first file.
751  ifeq ($$($1_SRC), )
752    $1_SRC := $$(dir $$(firstword $$($1_FILES)))
753  endif
754
755  ifeq ($$($1_NAME_MACRO), )
756    $1_NAME_MACRO := identity
757  endif
758
759  # Remove any trailing slash from SRC and DEST
760  $1_SRC := $$(patsubst %/,%,$$($1_SRC))
761  $1_DEST := $$(patsubst %/,%,$$($1_DEST))
762
763  $$(foreach f, $$(patsubst $$($1_SRC)/%,%,$$($1_FILES)), \
764      $$(eval $$(call AddFileToCopy, $$($1_SRC)/$$f, \
765      $$($1_DEST)/$$(call $$(strip $$($1_NAME_MACRO)),$$(if $$($1_FLATTEN),$$(notdir $$f),$$f)), \
766      $1, $$($1_MACRO))))
767
768endef
769
770################################################################################
771# ShellQuote
772#
773# Quotes a string with single quotes and replaces single quotes with '\'' so
774# that the contents survives being given to the shell.
775
776ShellQuote = \
777    $(SQUOTE)$(subst $(SQUOTE),$(SQUOTE)\$(SQUOTE)$(SQUOTE),$(strip $1))$(SQUOTE)
778
779################################################################################
780# Write to and read from file
781
782# Param 1 - File to read
783ReadFile = \
784    $(shell $(CAT) $1)
785
786# Param 1 - Text to write
787# Param 2 - File to write to
788ifeq ($(HAS_FILE_FUNCTION), true)
789  WriteFile = \
790      $(file >$2,$(strip $1))
791else
792  # Use printf to get consistent behavior on all platforms.
793  WriteFile = \
794      $(shell $(PRINTF) "%s" $(call ShellQuote, $1) > $2)
795endif
796
797################################################################################
798# DependOnVariable
799#
800# This macro takes a variable name and puts the value in a file only if the
801# value has changed since last. The name of the file is returned. This can be
802# used to create rule dependencies on make variable values. The following
803# example would get rebuilt if the value of SOME_VAR was changed:
804#
805# path/to/some-file: $(call DependOnVariable, SOME_VAR)
806#         echo $(SOME_VAR) > $@
807#
808# Note that leading and trailing white space in the value is ignored.
809#
810
811# Defines the sub directory structure to store variable value file in
812DependOnVariableDirName = \
813    $(strip $(addsuffix $(if $(MODULE),/$(MODULE)), \
814        $(subst $(SRC_ROOT)/,, $(if $(filter /%, $(firstword $(MAKEFILE_LIST))), \
815          $(firstword $(MAKEFILE_LIST)), \
816          $(CURDIR)/$(firstword $(MAKEFILE_LIST))))))
817
818# Defines the name of the file to store variable value in. Generates a name
819# unless parameter 2 is given.
820# Param 1 - Name of variable
821# Param 2 - (optional) name of file to store value in
822DependOnVariableFileName = \
823    $(strip $(if $(strip $2), $2, \
824      $(MAKESUPPORT_OUTPUTDIR)/vardeps/$(DependOnVariableDirName)/$(strip $1).vardeps))
825
826# Does the actual work with parameters stripped.
827# If the file exists AND the contents is the same as the variable, do nothing
828# else print a new file.
829# Always returns the name of the file where the value was printed.
830# Param 1 - Name of variable
831# Param 2 - (optional) name of file to store value in
832DependOnVariableHelper = \
833    $(strip \
834        $(eval -include $(call DependOnVariableFileName, $1, $2)) \
835        $(if $(call equals, $(strip $($1)), $(strip $($1_old))),,\
836          $(call MakeDir, $(dir $(call DependOnVariableFileName, $1, $2))) \
837          $(if $(findstring $(LOG_LEVEL), trace), \
838              $(info NewVariable $1: >$(strip $($1))<) \
839              $(info OldVariable $1: >$(strip $($1_old))<)) \
840          $(call WriteFile, $1_old:=$(call DoubleDollar,$(call EscapeHash,$($1))), \
841              $(call DependOnVariableFileName, $1, $2))) \
842        $(call DependOnVariableFileName, $1, $2) \
843    )
844
845# Main macro
846# Param 1 - Name of variable
847# Param 2 - (optional) name of file to store value in
848DependOnVariable = \
849    $(call DependOnVariableHelper,$(strip $1),$(strip $2))
850
851# LogCmdlines is only intended to be used by ExecuteWithLog
852ifeq ($(LOG_CMDLINES), true)
853  LogCmdlines = $(info $(strip $1))
854else
855  LogCmdlines =
856endif
857
858################################################################################
859# ExecuteWithLog will run a command and log the output appropriately. This is
860# meant to be used by commands that do "real" work, like a compilation.
861# The output is stored in a specified log file, which is displayed at the end
862# of the build in case of failure. The  command line itself is stored in a file,
863# and also logged to stdout if the LOG=cmdlines option has been given.
864#
865# NOTE: If the command redirects stdout, the caller needs to wrap it in a
866# subshell (by adding parentheses around it), otherwise the redirect to the
867# subshell tee process will create a race condition where the target file may
868# not be fully written when the make recipe is done.
869#
870# Param 1 - The path to base the name of the log file / command line file on
871# Param 2 - The command to run
872ExecuteWithLog = \
873  $(call LogCmdlines, Exececuting: [$(strip $2)]) \
874  $(call WriteFile, $2, $(strip $1).cmdline) \
875  ( $(strip $2) > >($(TEE) $(strip $1).log) 2> >($(TEE) $(strip $1).log >&2) || \
876      ( exitcode=$(DOLLAR)? && \
877      $(CP) $(strip $1).log $(MAKESUPPORT_OUTPUTDIR)/failure-logs/$(subst /,_,$(patsubst $(BUILD_OUTPUT)/%,%,$(strip $1))).log && \
878      exit $(DOLLAR)exitcode ) )
879
880################################################################################
881# Find lib dir for module
882# Param 1 - module name
883ifeq ($(OPENJDK_TARGET_OS_TYPE), unix)
884  FindLibDirForModule = \
885      $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)$(OPENJDK_TARGET_CPU_LIBDIR)
886else
887  FindLibDirForModule = \
888      $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)
889endif
890
891################################################################################
892# Return a string suitable for use after a -classpath or --module-path option. It
893# will be correct and safe to use on all platforms. Arguments are given as space
894# separate classpath entries. Safe for multiple nested calls.
895# param 1 : A space separated list of classpath entries
896# The surrounding strip is needed to keep additional whitespace out
897PathList = \
898  "$(subst $(SPACE),$(PATH_SEP),$(strip $(subst $(DQUOTE),,$1)))"
899
900################################################################################
901# Check if a specified hotspot variant is being built, or at least one of a
902# list of variants. Will return 'true' or 'false'.
903# $1 - the variant to test for
904check-jvm-variant = \
905  $(strip \
906    $(if $(filter-out $(VALID_JVM_VARIANTS), $1), \
907      $(error Internal error: Invalid variant tested: $1)) \
908    $(if $(filter $1, $(JVM_VARIANTS)), true, false))
909
910################################################################################
911# Converts a space separated list to a comma separated list.
912#
913# Replacing double-comma with a single comma is to workaround the issue with
914# some version of make on windows that doesn't substitute spaces with one comma
915# properly.
916CommaList = \
917  $(strip \
918      $(subst $(COMMA)$(COMMA),$(COMMA),$(subst $(SPACE),$(COMMA),$(strip $1))) \
919  )
920
921################################################################################
922
923# Hook to include the corresponding custom file, if present.
924$(eval $(call IncludeCustomExtension, , common/MakeBase.gmk))
925
926endif # _MAKEBASE_GMK
927