MakeBase.gmk revision 2119:a420707436c6
119304Speter#
219304Speter# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
319304Speter# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
419304Speter#
519304Speter# This code is free software; you can redistribute it and/or modify it
619304Speter# under the terms of the GNU General Public License version 2 only, as
719304Speter# published by the Free Software Foundation.  Oracle designates this
819304Speter# particular file as subject to the "Classpath" exception as provided
919304Speter# by Oracle in the LICENSE file that accompanied this code.
1019304Speter#
1119304Speter# This code is distributed in the hope that it will be useful, but WITHOUT
1219304Speter# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13254225Speter# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1419304Speter# version 2 for more details (a copy is included in the LICENSE file that
1519304Speter# accompanied this code).
1619304Speter#
1719304Speter# You should have received a copy of the GNU General Public License version
1819304Speter# 2 along with this work; if not, write to the Free Software Foundation,
1919304Speter# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2019304Speter#
2119304Speter# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2219304Speter# or visit www.oracle.com if you need additional information or have any
2319304Speter# questions.
2419304Speter#
2519304Speter
2619304Speter################################################################
2719304Speter#
2819304Speter# Setup common utility functions.
2919304Speter#
3019304Speter################################################################
3119304Speter
3219304Speterifndef _MAKEBASE_GMK
3319304Speter_MAKEBASE_GMK := 1
3419304Speter
3519304Speterifeq ($(wildcard $(SPEC)),)
3619304Speter  $(error MakeBase.gmk needs SPEC set to a proper spec.gmk)
3719304Speterendif
3819304Speter
3919304Speter# By defining this pseudo target, make will automatically remove targets
4019304Speter# if their recipe fails so that a rebuild is automatically triggered on the
4119304Speter# next make invocation.
4219304Speter.DELETE_ON_ERROR:
4319304Speter
4419304Speter################################################################################
4519304Speter# Definitions for special characters
4619304Speter################################################################################
4719304Speter
4819304Speter# When calling macros, the spaces between arguments are
4919304Speter# often semantically important! Sometimes we need to subst
5019304Speter# spaces and commas, therefore we need the following macros.
5119304SpeterX:=
5219304SpeterSPACE:=$(X) $(X)
5319304SpeterCOMMA:=,
5419304SpeterDOLLAR:=$$
5519304SpeterHASH:=\#
5619304SpeterLEFT_PAREN:=(
5719304SpeterRIGHT_PAREN:=)
5819304SpeterSQUOTE:='
5919304Speter#'
6019304SpeterDQUOTE:="
6119304Speter#"
6219304Speterdefine NEWLINE
6319304Speter
6419304Speter
6519304Speterendef
6619304Speter
67254225Speter# In GNU Make 4.0 and higher, there is a file function for writing to files.
6819304Speterifeq (4.0, $(firstword $(sort 4.0 $(MAKE_VERSION))))
6919304Speter  HAS_FILE_FUNCTION := true
7019304Speterendif
7119304Speter
7219304Speter##############################
73254225Speter# Functions
74254225Speter##############################
7519304Speter
7619304Speter### Debug functions
7719304Speter
7819304Speter# Prints the name and value of a variable
7919304SpeterPrintVar = \
8019304Speter    $(info $(strip $1) >$($(strip $1))<)
8119304Speter
8219304Speter### Functions for timers
8319304Speter
8419304Speter# Store the build times in this directory.
8519304SpeterBUILDTIMESDIR=$(OUTPUT_ROOT)/make-support/build-times
8619304Speter
8719304Speter# Record starting time for build of a sub repository.
8819304Speterdefine RecordStartTime
8919304Speter	$(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) && \
9019304Speter	$(DATE) '+%Y-%m-%d %H:%M:%S' > $(BUILDTIMESDIR)/build_time_start_$(strip $1)_human_readable
9119304Speterendef
9219304Speter
9319304Speter# Record ending time and calculate the difference and store it in a
9419304Speter# easy to read format. Handles builds that cross midnight. Expects
9519304Speter# that a build will never take 24 hours or more.
9619304Speterdefine RecordEndTime
9719304Speter	$(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)
9819304Speter	$(DATE) '+%Y-%m-%d %H:%M:%S' > $(BUILDTIMESDIR)/build_time_end_$(strip $1)_human_readable
9919304Speter	$(ECHO) `$(CAT) $(BUILDTIMESDIR)/build_time_start_$(strip $1)` `$(CAT) $(BUILDTIMESDIR)/build_time_end_$(strip $1)` $1 | \
10019304Speter	    $(NAWK) '{ F=$$7; T=$$14; if (F > T) { T+=3600*24 }; D=T-F; H=int(D/3600); \
10119304Speter	    M=int((D-H*3600)/60); S=D-H*3600-M*60; printf("%02d:%02d:%02d %s\n",H,M,S,$$15); }' \
10219304Speter	    > $(BUILDTIMESDIR)/build_time_diff_$(strip $1)
10319304Speterendef
10419304Speter
10519304Speter# Hook to be called when starting to execute a top-level target
10619304Speterdefine TargetEnter
10719304Speter	$(PRINTF) "## Starting $(patsubst %-only,%,$@)\n"
10819304Speter	$(call RecordStartTime,$(patsubst %-only,%,$@))
10919304Speterendef
11019304Speter
11119304Speter# Hook to be called when finish executing a top-level target
11219304Speterdefine TargetExit
11319304Speter	$(call RecordEndTime,$(patsubst %-only,%,$@))
11419304Speter	$(PRINTF) "## Finished $(patsubst %-only,%,$@) (build time %s)\n\n" \
11519304Speter	    "`$(CAT) $(BUILDTIMESDIR)/build_time_diff_$(patsubst %-only,%,$@) | $(CUT) -f 1 -d ' '`"
11619304Speterendef
11719304Speter
11819304Speter################################################################################
11919304Speter# This macro translates $ into \$ to protect the $ from expansion in the shell.
12019304Speter# To make this macro resilient against already escaped strings, first remove
12119304Speter# any present escapes before escaping so that no double escapes are added.
12219304SpeterEscapeDollar = $(subst $$,\$$,$(subst \$$,$$,$(strip $1)))
12319304Speter
12419304Speter################################################################################
12519304Speter# This macro translates $ into $$ to protect the string from make itself.
12619304SpeterDoubleDollar = $(subst $$,$$$$,$(strip $1))
12719304Speter
12819304Speter################################################################################
12919304Speter# ListPathsSafely can be used to print command parameters to a file. This is
13019304Speter# typically done if the command line lenght risk being too long for the
13119304Speter# OS/shell. In later make versions, the file function can be used for this
13219304Speter# purpose. For earlier versions, a more complex implementation is provided.
13319304Speter#
13419304Speter# The function ListPathsSafely can be called either directly or, more commonly
13519304Speter# from a recipe line. If called from a recipe, it will be executed in the
13619304Speter# evaluation phase of that recipe, which means that it will write to the file
13719304Speter# before any other line in the recipe has been run.
13819304Speterifeq ($(HAS_FILE_FUNCTION), true)
13919304Speter  # Param 1 - Name of variable containing paths/arguments to output
14019304Speter  # Param 2 - File to print to
14119304Speter  # Param 3 - Set to true to append to file instead of overwriting
14219304Speter  define ListPathsSafely
14319304Speter    $$(call MakeDir, $$(dir $$(strip $2)))
14419304Speter    $$(file $$(if $$(filter true, $$(strip $3)),>>,>) \
14519304Speter        $$(strip $2),$$(subst $$(SPACE),$$(NEWLINE),$$(strip $$($$(strip $1)))))
14619304Speter  endef
14719304Speter
14819304Speterelse # HAS_FILE_FUNCTION = false
14919304Speter
15019304Speter  $(eval compress_paths = \
15119304Speter      $(strip $(shell $(CAT) $(SRC_ROOT)/make/common/support/ListPathsSafely-pre-compress.incl)))
15219304Speter  compress_paths += \
15319304Speter      $(subst $(SRC_ROOT),X97, \
15419304Speter      $(subst $(OUTPUT_ROOT),X98, \
15519304Speter      $(subst X,X00, \
15619304Speter      $(subst $(SPACE),\n,$(strip $1)))))
15719304Speter  $(eval compress_paths += \
15819304Speter      $(strip $(shell $(CAT) $(SRC_ROOT)/make/common/support/ListPathsSafely-post-compress.incl)))
15919304Speter
16019304Speter  decompress_paths=$(SED) -f $(SRC_ROOT)/make/common/support/ListPathsSafely-uncompress.sed \
16119304Speter      -e 's|X99|\\n|g' \
16219304Speter      -e 's|X98|$(OUTPUT_ROOT)|g' -e 's|X97|$(SRC_ROOT)|g' \
16319304Speter      -e 's|X00|X|g'
16419304Speter
16519304Speter  ListPathsSafely_IfPrintf = \
16619304Speter      $(if $(word $3,$($(strip $1))), \
16719304Speter          $(shell $(PRINTF) -- "$(strip $(call EscapeDollar, \
16819304Speter              $(call compress_paths, $(wordlist $3,$4,$($(strip $1))))))\n" \
16919304Speter              | $(decompress_paths) >> $2))
17019304Speter
17119304Speter  # Param 1 - Name of variable containing paths/arguments to output
17219304Speter  # Param 2 - File to print to
17319304Speter  # Param 3 - Set to true to append to file instead of overwriting
17419304Speter  define ListPathsSafely
17519304Speter    ifneq (,$$(word 30001,$$($$(strip $1))))
17619304Speter      $$(error Cannot list safely more than 30000 paths. $1 has $$(words $$($$(strip $1))) paths!)
17719304Speter    endif
17819304Speter    $$(call MakeDir, $$(dir $2))
17919304Speter    ifneq ($$(strip $3), true)
18019304Speter      $$(shell $(RM) $$(strip $2))
18119304Speter    endif
18219304Speter
18319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,1,250)
18419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,251,500)
18519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,501,750)
18619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,751,1000)
18719304Speter
18819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,1001,1250)
18919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,1251,1500)
19019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,1501,1750)
19119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,1751,2000)
19219304Speter
19319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,2001,2250)
19419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,2251,2500)
19519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,2501,2750)
19619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,2751,3000)
19719304Speter
19819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,3001,3250)
19919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,3251,3500)
20019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,3501,3750)
20119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,3751,4000)
20219304Speter
20319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,4001,4250)
20419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,4251,4500)
205254225Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,4501,4750)
20619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,4751,5000)
20719304Speter
20819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,5001,5250)
20919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,5251,5500)
210254225Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,5501,5750)
211254225Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,5751,6000)
21219304Speter
21319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,6001,6250)
21419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,6251,6500)
21519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,6501,6750)
21619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,6751,7000)
21719304Speter
21819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,7001,7250)
21919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,7251,7500)
22019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,7501,7750)
22119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,7751,8000)
22219304Speter
22319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,8001,8250)
22419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,8251,8500)
22519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,8501,8750)
22619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,8751,9000)
22719304Speter
22819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,9001,9250)
22919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,9251,9500)
23019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,9501,9750)
23119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,9751,10000)
23219304Speter
23319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,10001,10250)
23419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,10251,10500)
23519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,10501,10750)
23619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,10751,11000)
23719304Speter
23819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,11001,11250)
23919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,11251,11500)
24019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,11501,11750)
24119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,11751,12000)
24219304Speter
24319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,12001,12250)
24419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,12251,12500)
24519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,12501,12750)
24619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,12751,13000)
24719304Speter
24819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,13001,13250)
24919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,13251,13500)
25019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,13501,13750)
25119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,13751,14000)
25219304Speter
25319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,14001,14250)
25419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,14251,14500)
25519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,14501,14750)
25619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,14751,15000)
25719304Speter
25819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,15001,15250)
25919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,15251,15500)
26019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,15501,15750)
26119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,15751,16000)
26219304Speter
26319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,16001,16250)
26419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,16251,16500)
26519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,16501,16750)
26619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,16751,17000)
26719304Speter
26819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,17001,17250)
26919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,17251,17500)
27019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,17501,17750)
27119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,17751,18000)
27219304Speter
27319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,18001,18250)
27419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,18251,18500)
27519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,18501,18750)
27619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,18751,19000)
27719304Speter
27819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,19001,19250)
27919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,19251,19500)
28019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,19501,19750)
28119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,19751,20000)
28219304Speter
28319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,20001,20250)
28419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,20251,20500)
28519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,20501,20750)
28619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,20751,21000)
28719304Speter
28819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,21001,21250)
28919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,21251,21500)
29019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,21501,21750)
29119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,21751,22000)
29219304Speter
29319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,22001,22250)
29419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,22251,22500)
29519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,22501,22750)
29619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,22751,23000)
29719304Speter
29819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,23001,23250)
29919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,23251,23500)
30019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,23501,23750)
30119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,23751,24000)
30219304Speter
30319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,24001,24250)
30419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,24251,24500)
30519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,24501,24750)
30619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,24751,25000)
30719304Speter
30819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,25001,25250)
30919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,25251,25500)
31019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,25501,25750)
31119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,25751,26000)
312254225Speter
31319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,26001,26250)
31419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,26251,26500)
31519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,26501,26750)
31619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,26751,27000)
31719304Speter
31819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,27001,27250)
31919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,27251,27500)
32019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,27501,27750)
32119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,27751,28000)
32219304Speter
32319304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,28001,28250)
32419304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,28251,28500)
32519304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,28501,28750)
32619304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,28751,29000)
32719304Speter
32819304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,29001,29250)
32919304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,29251,29500)
33019304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,29501,29750)
33119304Speter    $$(call ListPathsSafely_IfPrintf,$1,$2,29751,30000)
33219304Speter  endef
33319304Speterendif # HAS_FILE_FUNCTION
33419304Speter
33519304Speter################################################################################
33619304Speter# The source tips can come from the Mercurial repository, or in the files
33719304Speter# $(HGTIP_FILENAME) which contains the tip but is also positioned in the same
33819304Speter# directory as the original .hg directory. The hgtip files are created in
33919304Speter# CreateHgtipFiles.gmk.
34019304SpeterHGTIP_FILENAME := .hgtip
341FindAllReposAbs = \
342    $(strip $(sort $(dir $(filter-out $(SRC_ROOT)/build/%, $(wildcard \
343        $(addprefix $(SRC_ROOT)/, \
344            .hg */.hg */*/.hg */*/.hg */*/*/.hg \
345            .hgtip */.hgtip */*/.hgtip */*/.hgtip */*/*/.hgtip \
346        ) \
347    )))))
348
349FindAllReposRel = \
350    $(strip $(subst $(SRC_ROOT)/,.,$(patsubst $(SRC_ROOT)/%/, %, $(FindAllReposAbs))))
351
352# Emit the repo:tip pairs to $@, but only if they changed since last time
353define GetSourceTips
354	$(CD) $(SRC_ROOT) ; \
355	for i in $(FindAllReposRel) IGNORE ; do \
356	  if [ "$${i}" = "IGNORE" ] ; then \
357	    continue; \
358	  elif [ -d $${i}/.hg -a "$(HG)" != "" ] ; then \
359	    $(PRINTF) " %s:%s" \
360	        "$${i}" `$(HG) tip --repository $${i} --template '{node|short}\n'` ; \
361	  elif [ -f $${i}/$(HGTIP_FILENAME) ] ; then \
362	    $(PRINTF) " %s:%s" \
363	        "$${i}" `$(CAT) $${i}/$(HGTIP_FILENAME)` ; \
364	  fi; \
365	done > $@.tmp
366	$(PRINTF) "\n" >> $@.tmp
367	if [ ! -f $@ ] || [ "`$(CAT) $@`" != "`$(CAT) $@.tmp`" ]; then \
368	  $(MV) $@.tmp $@ ; \
369	else \
370	  $(RM) $@.tmp ; \
371	fi
372endef
373
374################################################################################
375
376define SetupLogging
377  ifeq ($$(LOG_LEVEL), trace)
378    # Shell redefinition trick inspired by http://www.cmcrossroads.com/ask-mr-make/6535-tracing-rule-execution-in-gnu-make
379    # For each target executed, will print
380    # Building <TARGET> (from <FIRST PREREQUISITE>) (<ALL NEWER PREREQUISITES> newer)
381    # but with a limit of 20 on <ALL NEWER PREREQUISITES>, to avoid cluttering logs too much
382    # (and causing a crash on Cygwin).
383    # Default shell seems to always be /bin/sh. Must override with bash to get this to work on Solaris.
384    # Only use time if it's GNU time which supports format and output file.
385    WRAPPER_SHELL := $$(BASH) $$(SRC_ROOT)/common/bin/shell-tracer.sh $$(if $$(findstring yes,$$(IS_GNU_TIME)),$$(TIME),-) $$(OUTPUT_ROOT)/build-trace-time.log $$(SHELL)
386    SHELL = $$(warning $$(if $$@,Building $$@,Running shell command) $$(if $$<, (from $$<))$$(if $$?, ($$(wordlist 1, 20, $$?) $$(if $$(wordlist 21, 22, $$?), ... [in total $$(words $$?) files]) newer)))$$(WRAPPER_SHELL)
387  endif
388  # The warn level can never be turned off
389  LogWarn = $$(info $$(strip $$1))
390  LOG_WARN :=
391  ifneq ($$(findstring $$(LOG_LEVEL), info debug trace),)
392    LogInfo = $$(info $$(strip $$1))
393    LOG_INFO :=
394  else
395    LogInfo =
396    LOG_INFO := > /dev/null
397  endif
398  ifneq ($$(findstring $$(LOG_LEVEL), debug trace),)
399    LogDebug = $$(info $$(strip $$1))
400    LOG_DEBUG :=
401  else
402    LogDebug =
403    LOG_DEBUG := > /dev/null
404  endif
405  ifneq ($$(findstring $$(LOG_LEVEL), trace),)
406    LogTrace = $$(info $$(strip $$1))
407    LOG_TRACE :=
408  else
409    LogTrace =
410    LOG_TRACE := > /dev/null
411  endif
412endef
413
414# Make sure logging is setup for everyone that includes MakeBase.gmk.
415$(eval $(call SetupLogging))
416
417################################################################################
418# Creates a sequence of increasing numbers (inclusive).
419# Param 1 - starting number
420# Param 2 - ending number
421sequence = \
422    $(wordlist $1, $2, $(strip \
423        $(eval SEQUENCE_COUNT :=) \
424        $(call _sequence-do,$(strip $2))))
425
426_sequence-do = \
427    $(if $(word $1, $(SEQUENCE_COUNT)),, \
428      $(eval SEQUENCE_COUNT += .) \
429      $(words $(SEQUENCE_COUNT)) \
430      $(call _sequence-do,$1))
431
432################################################################################
433
434MAX_PARAMS := 35
435PARAM_SEQUENCE := $(call sequence, 2, $(MAX_PARAMS))
436
437# Template for creating a macro taking named parameters. To use it, assign the
438# template to a variable with the name you want for your macro, using '='
439# assignment. Then define a macro body with the suffix "Body". The Body macro
440# should take 1 parameter which should be a unique string for that invocation
441# of the macro.
442# Ex:
443# SetupFoo = $(NamedParamsMacroTemplate)
444# define SetupFooBody
445#   # do something
446#   # access parameters as $$($1_BAR)
447# endef
448# Call it like this
449# $(eval $(call SetupFoo, BUILD_SOMETHING, \
450#     BAR := some parameter value, \
451# ))
452define NamedParamsMacroTemplate
453  $(if $($(MAX_PARAMS)),$(error Internal makefile error: \
454      Too many named arguments to macro, please update MAX_PARAMS in MakeBase.gmk))
455  # Iterate over 2 3 4... and evaluate the named parameters with $1_ as prefix
456  $(foreach i,$(PARAM_SEQUENCE), $(if $(strip $($i)),\
457    $(strip $1)_$(strip $($i)))$(NEWLINE))
458  # Debug print all named parameter names and values
459  $(if $(findstring $(LOG_LEVEL),debug trace), \
460    $(info $0 $(strip $1) $(foreach i,$(PARAM_SEQUENCE), \
461      $(if $(strip $($i)),$(NEWLINE) $(strip [$i] $(if $(filter $(LOG_LEVEL), trace), \
462        $($i), $(wordlist 1, 20, $($(i))) $(if $(word 21, $($(i))), ...)))))))
463
464  $(if $(DEBUG_$(strip $1)),
465    $(info -------- <<< Begin expansion of $(strip $1)) \
466    $(info $(call $(0)Body,$(strip $1))) \
467    $(info -------- >>> End expansion of $(strip $1)) \
468  )
469
470  $(call $(0)Body,$(strip $1))
471endef
472
473################################################################################
474# Make directory without forking mkdir if not needed
475# 1: List of directories to create
476MakeDir = \
477    $(strip \
478        $(eval MakeDir_dirs_to_make := $(strip $(foreach d, $1, $(if $(wildcard $d), , $d)))) \
479        $(if $(MakeDir_dirs_to_make), $(shell $(MKDIR) -p $(MakeDir_dirs_to_make))) \
480    )
481
482################################################################################
483# Assign a variable only if it is empty
484# Param 1 - Variable to assign
485# Param 2 - Value to assign
486SetIfEmpty = \
487    $(if $($(strip $1)),,$(eval $(strip $1) := $2))
488
489################################################################################
490
491ifeq ($(OPENJDK_TARGET_OS),solaris)
492  # On Solaris, if the target is a symlink and exists, cp won't overwrite.
493  # Cp has to operate in recursive mode to allow for -P flag, to preserve soft links. If the
494  # name of the target file differs from the source file, rename after copy.
495  # If the source and target parent directories are the same, recursive copy doesn't work
496  # so we fall back on regular copy, which isn't preserving symlinks.
497  define install-file
498	$(MKDIR) -p '$(@D)'
499	$(RM) '$@'
500	if [ "$(@D)" != "$(<D)" ]; then \
501	  $(CP) -f -r -P '$<' '$(@D)'; \
502	  if [ "$(@F)" != "$(<F)" ]; then \
503	    $(MV) '$(@D)/$(<F)' '$@'; \
504	  fi; \
505	else \
506	  if [ -L '$<' ]; then \
507	    $(ECHO) "Source file is a symlink and target is in the same directory: $< $@" ; \
508	    exit 1; \
509	  fi; \
510	  $(CP) -f '$<' '$@'; \
511	fi
512  endef
513else ifeq ($(OPENJDK_TARGET_OS),macosx)
514  # On mac, extended attributes sometimes creep into the source files, which may later
515  # cause the creation of ._* files which confuses testing. Clear these with xattr if
516  # set. Some files get their write permissions removed after being copied to the
517  # output dir. When these are copied again to images, xattr would fail. By only clearing
518  # attributes when they are present, failing on this is avoided.
519  #
520  # If copying a soft link to a directory, need to delete the target first to avoid
521  # weird errors.
522  define install-file
523	$(MKDIR) -p '$(@D)'
524	$(RM) '$@'
525	$(CP) -fRP '$<' '$@'
526	if [ -n "`$(XATTR) -l '$@'`" ]; then $(XATTR) -c '$@'; fi
527  endef
528else
529  # Running mkdir and cp in the same shell speeds up copy intensive tasks in Cygwin
530  # significantly.
531  define install-file
532	$(call MakeDir, $(@D))
533	$(CP) -fP '$<' '$@'
534  endef
535endif
536
537################################################################################
538# Filter out duplicate sub strings while preserving order. Keeps the first occurance.
539uniq = \
540    $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1)))
541
542# Returns all whitespace-separated words in $2 where at least one of the
543# whitespace-separated words in $1 is a substring.
544containing = \
545    $(strip \
546        $(foreach v,$(strip $2),\
547          $(call uniq,$(foreach p,$(strip $1),$(if $(findstring $p,$v),$v)))))
548
549# Returns all whitespace-separated words in $2 where none of the
550# whitespace-separated words in $1 is a substring.
551not-containing = \
552    $(strip $(filter-out $(call containing,$1,$2),$2))
553
554# Return a list of all string elements that are duplicated in $1.
555dups = \
556    $(strip $(foreach v, $(sort $1), $(if $(filter-out 1, \
557        $(words $(filter $v, $1))), $v)))
558
559# String equals
560equals = \
561    $(and $(findstring $(strip $1),$(strip $2)),\
562        $(findstring $(strip $2),$(strip $1)))
563
564# Remove a whole list of prefixes
565# $1 - List of prefixes
566# $2 - List of elements to process
567remove-prefixes = \
568    $(strip $(if $1,$(patsubst $(firstword $1)%,%,\
569      $(call remove-prefixes,$(filter-out $(firstword $1),$1),$2)),$2))
570
571# Convert the string given to upper case, without any $(shell)
572# Inspired by http://lists.gnu.org/archive/html/help-make/2013-09/msg00009.html
573uppercase_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 \
574    p,P q,Q r,R s,S t,T u,U v,V w,W x,X y,Y z,Z
575
576uppercase_internal = \
577  $(if $(strip $1), $$(subst $(firstword $1), $(call uppercase_internal, \
578      $(wordlist 2, $(words $1), $1), $2)), $2)
579
580# Convert a string to upper case. Works only on a-z.
581# $1 - The string to convert
582uppercase = \
583  $(strip \
584    $(eval uppercase_result := $(call uppercase_internal, $(uppercase_table), $1)) \
585    $(uppercase_result) \
586  )
587
588################################################################################
589
590ifneq ($(DISABLE_CACHE_FIND), true)
591  # In Cygwin, finds are very costly, both because of expensive forks and because
592  # of bad file system caching. Find is used extensively in $(shell) commands to
593  # find source files. This makes rerunning make with no or few changes rather
594  # expensive. To speed this up, these two macros are used to cache the results
595  # of simple find commands for reuse.
596  #
597  # Runs a find and stores both the directories where it was run and the results.
598  # This macro can be called multiple times to add to the cache. Only finds files
599  # with no filters.
600  #
601  # Needs to be called with $(eval )
602  #
603  # Even if the performance benifit is negligible on other platforms, keep the
604  # functionality active unless explicitly disabled to exercise it more.
605  #
606  # Initialize FIND_CACHE_DIRS with := to make it a non recursively-expanded variable
607  FIND_CACHE_DIRS :=
608  # Param 1 - Dirs to find in
609  # Param 2 - (optional) specialization. Normally "-a \( ... \)" expression.
610  define FillCacheFind
611    # Filter out already cached dirs. The - is needed when FIND_CACHE_DIRS is empty
612    # since filter out will then return empty.
613    FIND_CACHE_NEW_DIRS := $$(filter-out $$(addsuffix /%,\
614        - $(FIND_CACHE_DIRS)) $(FIND_CACHE_DIRS), $1)
615    ifneq ($$(FIND_CACHE_NEW_DIRS), )
616      # Remove any trailing slash from dirs in the cache dir list
617      FIND_CACHE_DIRS += $$(patsubst %/,%, $$(FIND_CACHE_NEW_DIRS))
618      FIND_CACHE := $$(sort $$(FIND_CACHE) $$(shell $(FIND) $$(FIND_CACHE_NEW_DIRS) \( -type f -o -type l \) $2))
619    endif
620  endef
621
622  # Mimics find by looking in the cache if all of the directories have been cached.
623  # Otherwise reverts to shell find. This is safe to call on all platforms, even if
624  # cache is deactivated.
625  #
626  # $1 can be either a directory or a file. If it's a directory, make
627  # sure we have exactly one trailing slash before the wildcard.
628  # The extra - is needed when FIND_CACHE_DIRS is empty but should be harmless.
629  #
630  # Param 1 - Dirs to find in
631  # Param 2 - (optional) specialization. Normally "-a \( ... \)" expression.
632  define CacheFind
633      $(if $(filter-out $(addsuffix /%,- $(FIND_CACHE_DIRS)) $(FIND_CACHE_DIRS),$1), \
634    $(shell $(FIND) $1 \( -type f -o -type l \) $2), \
635        $(filter $(addsuffix /%,$(patsubst %/,%,$1)) $1,$(FIND_CACHE)))
636  endef
637
638else
639  # If CacheFind is disabled, just run the find command.
640  # Param 1 - Dirs to find in
641  # Param 2 - (optional) specialization. Normally "-a \( ... \)" expression.
642  define CacheFind
643    $(shell $(FIND) $1 \( -type f -o -type l \) $2)
644  endef
645endif
646
647################################################################################
648
649define AddFileToCopy
650  # Helper macro for SetupCopyFiles
651  # 1 : Source file
652  # 2 : Dest file
653  # 3 : Variable to add targets to
654  # 4 : Macro to call for copy operation
655  $2: $1
656	$$(call LogInfo, Copying $$(patsubst $(OUTPUT_ROOT)/%,%,$$@))
657	$$($$(strip $4))
658
659  $3 += $2
660endef
661
662# Returns the value of the first argument
663identity = \
664    $(strip $1)
665
666# Setup make rules for copying files, with an option to do more complex
667# processing instead of copying.
668#
669# Parameter 1 is the name of the rule. This name is used as variable prefix,
670# and the targets generated are listed in a variable by that name.
671#
672# Remaining parameters are named arguments. These include:
673#   SRC     : Source root dir (defaults to dir of first file)
674#   DEST    : Dest root dir
675#   FILES   : List of files to copy with absolute paths, or path relative to SRC.
676#             Must be in SRC.
677#   FLATTEN : Set to flatten the directory structure in the DEST dir.
678#   MACRO   : Optionally override the default macro used for making the copy.
679#             Default is 'install-file'
680#   NAME_MACRO : Optionally supply a macro that rewrites the target file name
681#                based on the source file name
682SetupCopyFiles = $(NamedParamsMacroTemplate)
683define SetupCopyFilesBody
684
685  ifeq ($$($1_MACRO), )
686    $1_MACRO := install-file
687  endif
688
689  # Default SRC to the dir of the first file.
690  ifeq ($$($1_SRC), )
691    $1_SRC := $$(dir $$(firstword $$($1_FILES)))
692  endif
693
694  ifeq ($$($1_NAME_MACRO), )
695    $1_NAME_MACRO := identity
696  endif
697
698  # Remove any trailing slash from SRC and DEST
699  $1_SRC := $$(patsubst %/,%,$$($1_SRC))
700  $1_DEST := $$(patsubst %/,%,$$($1_DEST))
701
702  $$(foreach f, $$(patsubst $$($1_SRC)/%,%,$$($1_FILES)), \
703      $$(eval $$(call AddFileToCopy, $$($1_SRC)/$$f, \
704      $$($1_DEST)/$$(call $$(strip $$($1_NAME_MACRO)),$$(if $$($1_FLATTEN),$$(notdir $$f),$$f)), \
705      $1, $$($1_MACRO))))
706
707endef
708
709################################################################################
710# ShellQuote
711#
712# Quotes a string with single quotes and replaces single quotes with '\'' so
713# that the contents survives being given to the shell.
714
715ShellQuote = \
716    $(SQUOTE)$(subst $(SQUOTE),$(SQUOTE)\$(SQUOTE)$(SQUOTE),$(strip $1))$(SQUOTE)
717
718################################################################################
719# Write to and read from file
720
721# Param 1 - File to read
722ReadFile = \
723    $(shell $(CAT) $1)
724
725# Param 1 - Text to write
726# Param 2 - File to write to
727ifeq ($(HAS_FILE_FUNCTION), true)
728  WriteFile = \
729      $(file >$2,$(strip $1))
730else
731  # Use printf to get consistent behavior on all platforms.
732  WriteFile = \
733      $(shell $(PRINTF) "%s" $(call ShellQuote, $1) > $2)
734endif
735
736################################################################################
737# DependOnVariable
738#
739# This macro takes a variable name and puts the value in a file only if the
740# value has changed since last. The name of the file is returned. This can be
741# used to create rule dependencies on make variable values. The following
742# example would get rebuilt if the value of SOME_VAR was changed:
743#
744# path/to/some-file: $(call DependOnVariable, SOME_VAR)
745#         echo $(SOME_VAR) > $@
746#
747# Note that leading and trailing white space in the value is ignored.
748#
749
750# Defines the sub directory structure to store variable value file in
751DependOnVariableDirName = \
752    $(strip $(addsuffix $(if $(MODULE),/$(MODULE)), \
753        $(subst $(SRC_ROOT)/,, $(if $(filter /%, $(firstword $(MAKEFILE_LIST))), \
754          $(firstword $(MAKEFILE_LIST)), \
755          $(CURDIR)/$(firstword $(MAKEFILE_LIST))))))
756
757# Defines the name of the file to store variable value in. Generates a name
758# unless parameter 2 is given.
759# Param 1 - Name of variable
760# Param 2 - (optional) name of file to store value in
761DependOnVariableFileName = \
762    $(strip $(if $(strip $2), $2, \
763      $(MAKESUPPORT_OUTPUTDIR)/vardeps/$(DependOnVariableDirName)/$(strip $1).vardeps))
764
765# Does the actual work with parameters stripped.
766# If the file exists AND the contents is the same as the variable, do nothing
767# else print a new file.
768# Always returns the name of the file where the value was printed.
769# Param 1 - Name of variable
770# Param 2 - (optional) name of file to store value in
771DependOnVariableHelper = \
772    $(strip \
773        $(eval -include $(call DependOnVariableFileName, $1, $2)) \
774        $(if $(call equals, $(strip $($1)), $(strip $($1_old))),,\
775          $(call MakeDir, $(dir $(call DependOnVariableFileName, $1, $2))) \
776          $(if $(findstring $(LOG_LEVEL), trace), \
777              $(info NewVariable $1: >$(strip $($1))<) \
778              $(info OldVariable $1: >$(strip $($1_old))<)) \
779          $(call WriteFile, $1_old:=$(call DoubleDollar,$($1)), \
780              $(call DependOnVariableFileName, $1, $2))) \
781        $(call DependOnVariableFileName, $1, $2) \
782    )
783
784# Main macro
785# Param 1 - Name of variable
786# Param 2 - (optional) name of file to store value in
787DependOnVariable = \
788    $(call DependOnVariableHelper,$(strip $1),$(strip $2))
789
790# LogCmdlines is only intended to be used by ExecuteWithLog
791ifeq ($(LOG_CMDLINES), true)
792  LogCmdlines = $(info $(strip $1))
793else
794  LogCmdlines =
795endif
796
797################################################################################
798# ExecuteWithLog will run a command and log the output appropriately. This is
799# meant to be used by commands that do "real" work, like a compilation.
800# The output is stored in a specified log file, which is displayed at the end
801# of the build in case of failure. The  command line itself is stored in a file,
802# and also logged to stdout if the LOG=cmdlines option has been given.
803#
804# Param 1 - The path to base the name of the log file / command line file on
805# Param 2 - The command to run
806ExecuteWithLog = \
807  $(call LogCmdlines, Exececuting: [$(strip $2)]) \
808  $(call WriteFile, $2, $(strip $1).cmdline) \
809  ( ( $(strip $2) > >($(TEE) $(strip $1).log) 2> >($(TEE) $(strip $1).log >&2) || \
810      ( exitcode=$(DOLLAR)? && \
811      $(CP) $(strip $1).log $(MAKESUPPORT_OUTPUTDIR)/failure-logs/$(subst /,_,$(patsubst $(BUILD_OUTPUT)/%,%,$(strip $1))).log && \
812      exit $(DOLLAR)exitcode ) ) && wait )
813
814################################################################################
815# Find lib dir for module
816# Param 1 - module name
817ifeq ($(OPENJDK_TARGET_OS_TYPE), unix)
818  FindLibDirForModule = \
819      $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)$(OPENJDK_TARGET_CPU_LIBDIR)
820else
821  FindLibDirForModule = \
822      $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)
823endif
824
825################################################################################
826# Return a string suitable for use after a -classpath or -modulepath option. It
827# will be correct and safe to use on all platforms. Arguments are given as space
828# separate classpath entries. Safe for multiple nested calls.
829# param 1 : A space separated list of classpath entries
830# The surrounding strip is needed to keep additional whitespace out
831PathList = \
832  "$(subst $(SPACE),$(PATH_SEP),$(strip $(subst $(DQUOTE),,$1)))"
833
834################################################################################
835# Check if a specified hotspot variant is being built, or at least one of a
836# list of variants. Will return 'true' or 'false'.
837# $1 - the variant to test for
838check-jvm-variant = \
839  $(strip \
840    $(if $(filter-out $(VALID_JVM_VARIANTS), $1), \
841      $(error Internal error: Invalid variant tested: $1)) \
842    $(if $(filter $1, $(JVM_VARIANTS)), true, false))
843
844################################################################################
845# Converts a space separated list to a comma separated list.
846#
847# Replacing double-comma with a single comma is to workaround the issue with
848# some version of make on windows that doesn't substitute spaces with one comma
849# properly.
850CommaList = \
851  $(strip \
852      $(subst $(COMMA)$(COMMA),$(COMMA),$(subst $(SPACE),$(COMMA),$(strip $1))) \
853  )
854
855################################################################################
856
857# Hook to include the corresponding custom file, if present.
858$(eval $(call IncludeCustomExtension, , common/MakeBase.gmk))
859
860endif # _MAKEBASE_GMK
861