make/common/MakeBase.gmk

Fri, 26 Apr 2019 17:11:43 +0100

author
stooke
date
Fri, 26 Apr 2019 17:11:43 +0100
changeset 2422
84adf64edebb
parent 2223
01cc48ed67f3
child 2438
f4b08401e50d
permissions
-rw-r--r--

8222975: Fix 'release' file to reflect actual repo checkin used to compile JDK
Summary: Use 'hg id -i' instead of 'hg tip' for obtaining the source revision
Reviewed-by: andrew

ohair@425 1 #
ohair@425 2 # Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
ohair@425 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@425 4 #
ohair@425 5 # This code is free software; you can redistribute it and/or modify it
ohair@425 6 # under the terms of the GNU General Public License version 2 only, as
ohair@425 7 # published by the Free Software Foundation. Oracle designates this
ohair@425 8 # particular file as subject to the "Classpath" exception as provided
ohair@425 9 # by Oracle in the LICENSE file that accompanied this code.
ohair@425 10 #
ohair@425 11 # This code is distributed in the hope that it will be useful, but WITHOUT
ohair@425 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@425 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@425 14 # version 2 for more details (a copy is included in the LICENSE file that
ohair@425 15 # accompanied this code).
ohair@425 16 #
ohair@425 17 # You should have received a copy of the GNU General Public License version
ohair@425 18 # 2 along with this work; if not, write to the Free Software Foundation,
ohair@425 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@425 20 #
ohair@425 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@425 22 # or visit www.oracle.com if you need additional information or have any
ohair@425 23 # questions.
ohair@425 24 #
ohair@425 25
ohair@425 26 ################################################################
ohair@425 27 #
ohair@425 28 # Check that GNU make and cygwin are recent enough.
ohair@425 29 # Setup common utility functions.
ohair@425 30 #
ohair@425 31 ################################################################
ohair@425 32
ohair@425 33 ifndef _MAKEBASE_GMK
ohair@425 34 _MAKEBASE_GMK := 1
ohair@425 35
ohair@425 36 # If the variable that you want to send to stdout for piping into a file or otherwise,
ohair@425 37 # is potentially long, for example the a list of file paths, eg a list of all package directories.
ohair@425 38 # Then you need to use ListPathsSafely, which optimistically splits the output into several shell
ohair@425 39 # calls as well as use compression on recurrent file paths segments, to get around the potential
ohair@425 40 # command line length problem that exists in cygwin and other shells.
ihse@912 41 compress_pre:=$(strip $(shell $(CAT) $(SRC_ROOT)/make/common/support/ListPathsSafely-pre-compress.incl))
ihse@912 42 compress_post:=$(strip $(shell $(CAT) $(SRC_ROOT)/make/common/support/ListPathsSafely-post-compress.incl))
ohair@425 43 compress_paths=$(compress_pre)\
ohair@425 44 $(subst $(SRC_ROOT),X97,\
ohair@425 45 $(subst $(OUTPUT_ROOT),X98,\
ohair@425 46 $(subst X,X00,\
ohair@425 47 $(subst $(SPACE),\n,$(strip $1)))))\
ohair@425 48 $(compress_post)
ohair@425 49
ihse@912 50 decompress_paths=$(SED) -f $(SRC_ROOT)/make/common/support/ListPathsSafely-uncompress.sed -e 's|X99|\\n|g' \
ihse@839 51 -e 's|X98|$(OUTPUT_ROOT)|g' -e 's|X97|$(SRC_ROOT)|g' \
ihse@839 52 -e 's|X00|X|g' | tr '\n' '$2'
ohair@425 53
ohair@425 54 define ListPathsSafely_If
ihse@839 55 $(if $(word $3,$($1)),$(eval $1_LPS$3:=$(call compress_paths,$(wordlist $3,$4,$($1)))))
ohair@425 56 endef
ohair@425 57
ohair@425 58 define ListPathsSafely_Printf
erikj@840 59 $(if $(strip $($1_LPS$4)),$(if $(findstring $(LOG_LEVEL),trace),,@)printf \
erikj@840 60 -- "$(strip $($1_LPS$4))\n" | $(decompress_paths) $3)
ohair@425 61 endef
ohair@425 62
ohair@425 63 # Receipt example:
ihse@839 64 # rm -f thepaths
ihse@839 65 # $(call ListPathsSafely,THEPATHS,\n, >> thepaths)
ihse@839 66 # The \n argument means translate spaces into \n
ihse@839 67 # if instead , , (a space) is supplied, then spaces remain spaces.
ohair@425 68 define ListPathsSafely
ihse@839 69 $(if $(word 16001,$($1)),$(error Cannot list safely more than 16000 paths. $1 has $(words $($1)) paths!))
erikj@840 70 $(ECHO) $(LOG_DEBUG) Writing $(words $($1)) paths to '$3'
ihse@839 71 $(call ListPathsSafely_If,$1,$2,1,250)
ihse@839 72 $(call ListPathsSafely_If,$1,$2,251,500)
ihse@839 73 $(call ListPathsSafely_If,$1,$2,501,750)
ihse@839 74 $(call ListPathsSafely_If,$1,$2,751,1000)
ohair@425 75
ihse@839 76 $(call ListPathsSafely_If,$1,$2,1001,1250)
ihse@839 77 $(call ListPathsSafely_If,$1,$2,1251,1500)
ihse@839 78 $(call ListPathsSafely_If,$1,$2,1501,1750)
ihse@839 79 $(call ListPathsSafely_If,$1,$2,1751,2000)
ohair@425 80
ihse@839 81 $(call ListPathsSafely_If,$1,$2,2001,2250)
ihse@839 82 $(call ListPathsSafely_If,$1,$2,2251,2500)
ihse@839 83 $(call ListPathsSafely_If,$1,$2,2501,2750)
ihse@839 84 $(call ListPathsSafely_If,$1,$2,2751,3000)
ohair@425 85
ihse@839 86 $(call ListPathsSafely_If,$1,$2,3001,3250)
ihse@839 87 $(call ListPathsSafely_If,$1,$2,3251,3500)
ihse@839 88 $(call ListPathsSafely_If,$1,$2,3501,3750)
ihse@839 89 $(call ListPathsSafely_If,$1,$2,3751,4000)
ohair@425 90
ihse@839 91 $(call ListPathsSafely_If,$1,$2,4001,4250)
ihse@839 92 $(call ListPathsSafely_If,$1,$2,4251,4500)
ihse@839 93 $(call ListPathsSafely_If,$1,$2,4501,4750)
ihse@839 94 $(call ListPathsSafely_If,$1,$2,4751,5000)
ohair@425 95
ihse@839 96 $(call ListPathsSafely_If,$1,$2,5001,5250)
ihse@839 97 $(call ListPathsSafely_If,$1,$2,5251,5500)
ihse@839 98 $(call ListPathsSafely_If,$1,$2,5501,5750)
ihse@839 99 $(call ListPathsSafely_If,$1,$2,5751,6000)
ohair@425 100
ihse@839 101 $(call ListPathsSafely_If,$1,$2,6001,6250)
ihse@839 102 $(call ListPathsSafely_If,$1,$2,6251,6500)
ihse@839 103 $(call ListPathsSafely_If,$1,$2,6501,6750)
ihse@839 104 $(call ListPathsSafely_If,$1,$2,6751,7000)
ohair@425 105
ihse@839 106 $(call ListPathsSafely_If,$1,$2,7001,7250)
ihse@839 107 $(call ListPathsSafely_If,$1,$2,7251,7500)
ihse@839 108 $(call ListPathsSafely_If,$1,$2,7501,7750)
ihse@839 109 $(call ListPathsSafely_If,$1,$2,7751,8000)
ohair@425 110
ihse@839 111 $(call ListPathsSafely_If,$1,$2,8001,8250)
ihse@839 112 $(call ListPathsSafely_If,$1,$2,8251,8500)
ihse@839 113 $(call ListPathsSafely_If,$1,$2,8501,8750)
ihse@839 114 $(call ListPathsSafely_If,$1,$2,8751,9000)
ohair@425 115
ihse@839 116 $(call ListPathsSafely_If,$1,$2,9001,9250)
ihse@839 117 $(call ListPathsSafely_If,$1,$2,9251,9500)
ihse@839 118 $(call ListPathsSafely_If,$1,$2,9501,9750)
ihse@839 119 $(call ListPathsSafely_If,$1,$2,9751,10000)
ohair@425 120
ihse@839 121 $(call ListPathsSafely_If,$1,$2,10001,10250)
ihse@839 122 $(call ListPathsSafely_If,$1,$2,10251,10500)
ihse@839 123 $(call ListPathsSafely_If,$1,$2,10501,10750)
ihse@839 124 $(call ListPathsSafely_If,$1,$2,10751,11000)
erikj@501 125
ihse@839 126 $(call ListPathsSafely_If,$1,$2,11001,11250)
ihse@839 127 $(call ListPathsSafely_If,$1,$2,11251,11500)
ihse@839 128 $(call ListPathsSafely_If,$1,$2,11501,11750)
ihse@839 129 $(call ListPathsSafely_If,$1,$2,11751,12000)
erikj@501 130
ihse@839 131 $(call ListPathsSafely_If,$1,$2,12001,12250)
ihse@839 132 $(call ListPathsSafely_If,$1,$2,12251,12500)
ihse@839 133 $(call ListPathsSafely_If,$1,$2,12501,12750)
ihse@839 134 $(call ListPathsSafely_If,$1,$2,12751,13000)
erikj@501 135
ihse@839 136 $(call ListPathsSafely_If,$1,$2,13001,13250)
ihse@839 137 $(call ListPathsSafely_If,$1,$2,13251,13500)
ihse@839 138 $(call ListPathsSafely_If,$1,$2,13501,13750)
ihse@839 139 $(call ListPathsSafely_If,$1,$2,13751,14000)
erikj@501 140
ihse@839 141 $(call ListPathsSafely_If,$1,$2,14001,14250)
ihse@839 142 $(call ListPathsSafely_If,$1,$2,14251,14500)
ihse@839 143 $(call ListPathsSafely_If,$1,$2,14501,14750)
ihse@839 144 $(call ListPathsSafely_If,$1,$2,14751,15000)
erikj@501 145
ihse@839 146 $(call ListPathsSafely_If,$1,$2,15001,15250)
ihse@839 147 $(call ListPathsSafely_If,$1,$2,15251,15500)
ihse@839 148 $(call ListPathsSafely_If,$1,$2,15501,15750)
ihse@839 149 $(call ListPathsSafely_If,$1,$2,15751,16000)
erikj@501 150
ihse@839 151 $(call ListPathsSafely_Printf,$1,$2,$3,1)
ihse@839 152 $(call ListPathsSafely_Printf,$1,$2,$3,251)
ihse@839 153 $(call ListPathsSafely_Printf,$1,$2,$3,501)
ihse@839 154 $(call ListPathsSafely_Printf,$1,$2,$3,751)
ohair@425 155
ihse@839 156 $(call ListPathsSafely_Printf,$1,$2,$3,1001)
ihse@839 157 $(call ListPathsSafely_Printf,$1,$2,$3,1251)
ihse@839 158 $(call ListPathsSafely_Printf,$1,$2,$3,1501)
ihse@839 159 $(call ListPathsSafely_Printf,$1,$2,$3,1751)
ohair@425 160
ihse@839 161 $(call ListPathsSafely_Printf,$1,$2,$3,2001)
ihse@839 162 $(call ListPathsSafely_Printf,$1,$2,$3,2251)
ihse@839 163 $(call ListPathsSafely_Printf,$1,$2,$3,2501)
ihse@839 164 $(call ListPathsSafely_Printf,$1,$2,$3,2751)
ohair@425 165
ihse@839 166 $(call ListPathsSafely_Printf,$1,$2,$3,3001)
ihse@839 167 $(call ListPathsSafely_Printf,$1,$2,$3,3251)
ihse@839 168 $(call ListPathsSafely_Printf,$1,$2,$3,3501)
ihse@839 169 $(call ListPathsSafely_Printf,$1,$2,$3,3751)
ohair@425 170
ihse@839 171 $(call ListPathsSafely_Printf,$1,$2,$3,4001)
ihse@839 172 $(call ListPathsSafely_Printf,$1,$2,$3,4251)
ihse@839 173 $(call ListPathsSafely_Printf,$1,$2,$3,4501)
ihse@839 174 $(call ListPathsSafely_Printf,$1,$2,$3,4751)
ohair@425 175
ihse@839 176 $(call ListPathsSafely_Printf,$1,$2,$3,5001)
ihse@839 177 $(call ListPathsSafely_Printf,$1,$2,$3,5251)
ihse@839 178 $(call ListPathsSafely_Printf,$1,$2,$3,5501)
ihse@839 179 $(call ListPathsSafely_Printf,$1,$2,$3,5751)
ohair@425 180
ihse@839 181 $(call ListPathsSafely_Printf,$1,$2,$3,6001)
ihse@839 182 $(call ListPathsSafely_Printf,$1,$2,$3,6251)
ihse@839 183 $(call ListPathsSafely_Printf,$1,$2,$3,6501)
ihse@839 184 $(call ListPathsSafely_Printf,$1,$2,$3,6751)
ohair@425 185
ihse@839 186 $(call ListPathsSafely_Printf,$1,$2,$3,7001)
ihse@839 187 $(call ListPathsSafely_Printf,$1,$2,$3,7251)
ihse@839 188 $(call ListPathsSafely_Printf,$1,$2,$3,7501)
ihse@839 189 $(call ListPathsSafely_Printf,$1,$2,$3,7751)
ohair@425 190
ihse@839 191 $(call ListPathsSafely_Printf,$1,$2,$3,8001)
ihse@839 192 $(call ListPathsSafely_Printf,$1,$2,$3,8251)
ihse@839 193 $(call ListPathsSafely_Printf,$1,$2,$3,8501)
ihse@839 194 $(call ListPathsSafely_Printf,$1,$2,$3,8751)
ohair@425 195
ihse@839 196 $(call ListPathsSafely_Printf,$1,$2,$3,9001)
ihse@839 197 $(call ListPathsSafely_Printf,$1,$2,$3,9251)
ihse@839 198 $(call ListPathsSafely_Printf,$1,$2,$3,9501)
ihse@839 199 $(call ListPathsSafely_Printf,$1,$2,$3,9751)
erikj@501 200
ihse@839 201 $(call ListPathsSafely_Printf,$1,$2,$3,10001)
ihse@839 202 $(call ListPathsSafely_Printf,$1,$2,$3,10251)
ihse@839 203 $(call ListPathsSafely_Printf,$1,$2,$3,10501)
ihse@839 204 $(call ListPathsSafely_Printf,$1,$2,$3,10751)
erikj@501 205
ihse@839 206 $(call ListPathsSafely_Printf,$1,$2,$3,11001)
ihse@839 207 $(call ListPathsSafely_Printf,$1,$2,$3,11251)
ihse@839 208 $(call ListPathsSafely_Printf,$1,$2,$3,11501)
ihse@839 209 $(call ListPathsSafely_Printf,$1,$2,$3,11751)
erikj@501 210
ihse@839 211 $(call ListPathsSafely_Printf,$1,$2,$3,12001)
ihse@839 212 $(call ListPathsSafely_Printf,$1,$2,$3,12251)
ihse@839 213 $(call ListPathsSafely_Printf,$1,$2,$3,12501)
ihse@839 214 $(call ListPathsSafely_Printf,$1,$2,$3,12751)
erikj@501 215
ihse@839 216 $(call ListPathsSafely_Printf,$1,$2,$3,13001)
ihse@839 217 $(call ListPathsSafely_Printf,$1,$2,$3,13251)
ihse@839 218 $(call ListPathsSafely_Printf,$1,$2,$3,13501)
ihse@839 219 $(call ListPathsSafely_Printf,$1,$2,$3,13751)
erikj@501 220
ihse@839 221 $(call ListPathsSafely_Printf,$1,$2,$3,14001)
ihse@839 222 $(call ListPathsSafely_Printf,$1,$2,$3,14251)
ihse@839 223 $(call ListPathsSafely_Printf,$1,$2,$3,14501)
ihse@839 224 $(call ListPathsSafely_Printf,$1,$2,$3,14751)
erikj@501 225
ihse@839 226 $(call ListPathsSafely_Printf,$1,$2,$3,15001)
ihse@839 227 $(call ListPathsSafely_Printf,$1,$2,$3,15251)
ihse@839 228 $(call ListPathsSafely_Printf,$1,$2,$3,15501)
ihse@839 229 $(call ListPathsSafely_Printf,$1,$2,$3,15751)
ohair@425 230 endef
ohair@425 231
ohair@425 232 define ListPathsSafelyNow_IfPrintf
ihse@839 233 ifneq (,$$(word $4,$$($1)))
ihse@839 234 $$(eval $1_LPS$4:=$$(call compress_paths,$$(wordlist $4,$5,$$($1))))
ihse@839 235 $$(shell printf -- "$$(strip $$($1_LPS$4))\n" | $(decompress_paths) $3)
ihse@839 236 endif
ohair@425 237 endef
ohair@425 238
ohair@425 239 # And an non-receipt version:
ohair@425 240 define ListPathsSafelyNow
ihse@839 241 ifneq (,$$(word 10001,$$($1)))
ihse@839 242 $$(error Cannot list safely more than 10000 paths. $1 has $$(words $$($1)) paths!)
ihse@839 243 endif
ihse@839 244 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,1,250)
ihse@839 245 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,251,500)
ihse@839 246 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,501,750)
ihse@839 247 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,751,1000)
ohair@425 248
ihse@839 249 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,1001,1250)
ihse@839 250 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,1251,1500)
ihse@839 251 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,1501,1750)
ihse@839 252 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,1751,2000)
ohair@425 253
ihse@839 254 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,2001,2250)
ihse@839 255 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,2251,2500)
ihse@839 256 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,2501,2750)
ihse@839 257 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,2751,3000)
ohair@425 258
ihse@839 259 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,3001,3250)
ihse@839 260 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,3251,3500)
ihse@839 261 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,3501,3750)
ihse@839 262 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,3751,4000)
ohair@425 263
ihse@839 264 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,4001,4250)
ihse@839 265 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,4251,4500)
ihse@839 266 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,4501,4750)
ihse@839 267 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,4751,5000)
ohair@425 268
ihse@839 269 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,5001,5250)
ihse@839 270 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,5251,5500)
ihse@839 271 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,5501,5750)
ihse@839 272 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,5751,6000)
ohair@425 273
ihse@839 274 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,6001,6250)
ihse@839 275 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,6251,6500)
ihse@839 276 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,6501,6750)
ihse@839 277 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,6751,7000)
ohair@425 278
ihse@839 279 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,7001,7250)
ihse@839 280 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,7251,7500)
ihse@839 281 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,7501,7750)
ihse@839 282 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,7751,8000)
ohair@425 283
ihse@839 284 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,8001,8250)
ihse@839 285 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,8251,8500)
ihse@839 286 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,8501,8750)
ihse@839 287 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,8751,9000)
ohair@425 288
ihse@839 289 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,9001,9250)
ihse@839 290 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,9251,9500)
ihse@839 291 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,9501,9750)
ihse@839 292 $(call ListPathsSafelyNow_IfPrintf,$1,$2,$3,9751,10000)
ohair@425 293
ohair@425 294 endef
ohair@425 295
stooke@2422 296 # The source ids can come from the Mercurial repository, or in the files
stooke@2422 297 # $(HGTIP_FILENAME) which contains the id but is also positioned in the same
ihse@839 298 # directory as the original $(HGDIR) directory.
ihse@839 299 # These should not be := assignments, only used from the root Makefile.
erikj@445 300 HG_VERSION = $(shell $(HG) version 2> /dev/null)
erikj@445 301 HG_DIRECTORY=.hg
erikj@445 302 HGTIP_FILENAME=.hgtip
erikj@445 303 HG_SEARCH = ./REPO ./*/REPO ./*/*/REPO ./*/*/*/REPO
erikj@445 304 REPO_LIST = $(patsubst ./%,%,$(patsubst %/,%,$(sort $(dir \
erikj@445 305 $(shell $(CD) $(SRC_ROOT) ; ( $(LS) -d $(HG_SEARCH:%/REPO=%/$(HG_DIRECTORY)) ; \
ihse@839 306 $(LS) $(HG_SEARCH:%/REPO=%/$(HGTIP_FILENAME)) ) \
ihse@839 307 2> /dev/null)))))
erikj@445 308
stooke@2422 309 # Emit the repo:id pairs to $@
erikj@445 310 define GetSourceTips
ihse@839 311 $(CD) $(SRC_ROOT) ; \
ihse@839 312 for i in $(REPO_LIST) IGNORE ; do \
ihse@839 313 if [ "$${i}" = "IGNORE" ] ; then \
ihse@839 314 continue; \
ihse@839 315 elif [ -d $${i}/$(HG_DIRECTORY) -a "$(HG_VERSION)" != "" ] ; then \
ihse@839 316 $(PRINTF) " %s:%s" \
stooke@2422 317 "$${i}" `$(HG) id -i --repository $${i}` ; \
ihse@839 318 elif [ -f $${i}/$(HGTIP_FILENAME) ] ; then \
ihse@839 319 $(PRINTF) " %s:%s" \
ihse@839 320 "$${i}" `$(CAT) $${i}/$(HGTIP_FILENAME)` ; \
ihse@839 321 fi; \
ihse@839 322 done >> $@
ihse@839 323 $(PRINTF) "\n" >> $@
erikj@445 324 endef
erikj@445 325
erikj@445 326 # Create the HGTIP_FILENAME file. Called from jdk/make/closed/bundles.gmk
erikj@445 327 define CreateHgTip
stooke@2422 328 $(HG) id -i --repository $1' > $1/$(HGTIP_FILENAME); \
ihse@839 329 $(ECHO) $1/$(HGTIP_FILENAME)
erikj@445 330 endef
erikj@445 331
erikj@445 332 define SetupLogging
ihse@839 333 ifeq ($$(LOG_LEVEL),trace)
ihse@839 334 # Shell redefinition trick inspired by http://www.cmcrossroads.com/ask-mr-make/6535-tracing-rule-execution-in-gnu-make
ihse@839 335 # For each target executed, will print
ihse@839 336 # Building <TARGET> (from <FIRST PREREQUISITE>) (<ALL NEWER PREREQUISITES> newer)
ihse@839 337 # but with a limit of 20 on <ALL NEWER PREREQUISITES>, to avoid cluttering logs too much
ihse@839 338 # (and causing a crash on Cygwin).
ihse@839 339 # Default shell seems to always be /bin/sh. Must override with bash to get this to work on Solaris.
ihse@839 340 # Only use time if it's GNU time which supports format and output file.
ihse@839 341 WRAPPER_SHELL:=/bin/bash $$(SRC_ROOT)/common/bin/shell-tracer.sh $$(if $$(findstring yes,$$(IS_GNU_TIME)),$$(TIME),-) $$(OUTPUT_ROOT)/build-trace-time.log /bin/bash
ihse@839 342 SHELL=$$(warning $$(if $$@,Building $$@,Running shell command) $$(if $$<, (from $$<))$$(if $$?, ($$(wordlist 1, 20, $$?) $$(if $$(wordlist 21, 22, $$?), ... [in total $$(words $$?) files]) newer)))$$(WRAPPER_SHELL)
ihse@839 343 endif
ihse@839 344 # Never remove warning messages; this is just for completeness
ihse@839 345 LOG_WARN=
ihse@839 346 ifneq ($$(findstring $$(LOG_LEVEL),info debug trace),)
ihse@839 347 LOG_INFO=
ihse@839 348 else
ihse@839 349 LOG_INFO=> /dev/null
ihse@839 350 endif
ihse@839 351 ifneq ($$(findstring $$(LOG_LEVEL),debug trace),)
ihse@839 352 LOG_DEBUG=
ihse@839 353 else
ihse@839 354 LOG_DEBUG=> /dev/null
ihse@839 355 endif
ihse@839 356 ifneq ($$(findstring $$(LOG_LEVEL),trace),)
ihse@839 357 LOG_TRACE=
ihse@839 358 else
ihse@839 359 LOG_TRACE=> /dev/null
ihse@839 360 endif
erikj@445 361 endef
erikj@445 362
erikj@445 363 # Make sure logging is setup for everyone that includes MakeBase.gmk.
erikj@445 364 $(eval $(call SetupLogging))
erikj@445 365
ohair@494 366 # This is to be called by all SetupFoo macros
ohair@494 367 define LogSetupMacroEntry
ihse@839 368 $(if $(27),$(error Internal makefile error: Too many arguments to LogSetupMacroEntry, please update MakeBase.gmk))
ihse@839 369 $(if $(findstring $(LOG_LEVEL),debug trace), $(info $1 $(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26,$(if $($i),$(NEWLINE) $(strip [$i] $($i))))))
ohair@494 370 endef
ohair@494 371
ohair@494 372 # Make directory without forking mkdir if not needed
ohair@494 373 define MakeDir
ihse@839 374 ifneq ($$(wildcard $1 $2 $3 $4 $5 $6 $7 $8 $9),$$(strip $1 $2 $3 $4 $5 $6 $7 $8 $9))
ihse@839 375 $$(shell $(MKDIR) -p $1 $2 $3 $4 $5 $6 $7 $8 $9)
ihse@839 376 endif
ohair@494 377 endef
ohair@494 378
ohair@494 379 ifeq ($(OPENJDK_TARGET_OS),solaris)
ihse@839 380 # On Solaris, if the target is a symlink and exists, cp won't overwrite.
ihse@839 381 # Cp has to operate in recursive mode to allow for -P flag, to preserve soft links. If the
ihse@839 382 # name of the target file differs from the source file, rename after copy.
ihse@839 383 define install-file
ohair@494 384 $(MKDIR) -p $(@D)
ohair@494 385 $(RM) '$@'
ohair@494 386 $(CP) -f -r -P '$<' '$(@D)'
erikj@670 387 if [ "$(@F)" != "$(<F)" ]; then $(MV) '$(@D)/$(<F)' '$@'; fi
ihse@839 388 endef
ohair@494 389 else ifeq ($(OPENJDK_TARGET_OS),macosx)
ihse@839 390 # On mac, extended attributes sometimes creep into the source files, which may later
ihse@839 391 # cause the creation of ._* files which confuses testing. Clear these with xattr if
ihse@839 392 # set. Some files get their write permissions removed after being copied to the
ihse@839 393 # output dir. When these are copied again to images, xattr would fail. By only clearing
ihse@839 394 # attributes when they are present, failing on this is avoided.
ihse@839 395 define install-file
ohair@494 396 $(MKDIR) -p $(@D)
erikj@670 397 $(CP) -fRP '$<' '$@'
erikj@670 398 if [ -n "`$(XATTR) -l '$@'`" ]; then $(XATTR) -c '$@'; fi
ihse@839 399 endef
ohair@494 400 else
ihse@839 401 define install-file
ohair@494 402 $(MKDIR) -p $(@D)
ohair@494 403 $(CP) -fP '$<' '$@'
ihse@839 404 endef
ohair@494 405 endif
ohair@494 406
erikj@557 407 # Convenience functions for working around make's limitations with $(filter ).
erikj@557 408 containing = $(foreach v,$2,$(if $(findstring $1,$v),$v))
erikj@557 409 not-containing = $(foreach v,$2,$(if $(findstring $1,$v),,$v))
erikj@557 410
erikj@557 411 ################################################################################
erikj@557 412 # In Cygwin, finds are very costly, both because of expensive forks and because
erikj@557 413 # of bad file system caching. Find is used extensively in $(shell) commands to
ihse@839 414 # find source files. This makes rerunning make with no or few changes rather
erikj@557 415 # expensive. To speed this up, these two macros are used to cache the results
erikj@557 416 # of simple find commands for reuse.
ihse@839 417 #
erikj@557 418 # Runs a find and stores both the directories where it was run and the results.
erikj@557 419 # This macro can be called multiple times to add to the cache. Only finds files
erikj@557 420 # with no filters.
erikj@557 421 #
erikj@557 422 # Needs to be called with $(eval )
ihse@839 423 #
erikj@557 424 # Param 1 - Dir to find in
erikj@557 425 ifeq ($(OPENJDK_BUILD_OS),windows)
ihse@839 426 define FillCacheFind
erikj@557 427 FIND_CACHE_DIR += $1
erikj@557 428 FIND_CACHE := $$(sort $$(FIND_CACHE) $$(shell $(FIND) $1 -type f -o -type l))
ihse@839 429 endef
erikj@557 430 else
ihse@839 431 define FillCacheFind
ihse@839 432 endef
erikj@557 433 endif
erikj@557 434
erikj@557 435 # Mimics find by looking in the cache if all of the directories have been cached.
erikj@557 436 # Otherwise reverts to shell find. This is safe to call on all platforms, even if
erikj@557 437 # cache is deactivated.
erikj@557 438 #
erikj@557 439 # The extra - is needed when FIND_CACHE_DIR is empty but should be harmless.
erikj@557 440 # Param 1 - Dirs to find in
erikj@557 441 define CacheFind
ihse@839 442 $(if $(filter-out $(addsuffix %,- $(FIND_CACHE_DIR)),$1), \
ihse@839 443 $(shell $(FIND) $1 -type f -o -type l), \
ihse@839 444 $(filter $(addsuffix %,$1),$(FIND_CACHE)))
erikj@557 445 endef
erikj@557 446
erikj@557 447 ################################################################################
erikj@557 448
kevinw@2223 449 define AddFileToCopy
kevinw@2223 450 # Helper macro for SetupCopyFiles
kevinw@2223 451 # 1 : Source file
kevinw@2223 452 # 2 : Dest file
kevinw@2223 453 # 3 : Variable to add targets to
kevinw@2223 454 # 4 : Macro to call for copy operation
kevinw@2223 455 $2: $1
kevinw@2223 456 $(ECHO) $(LOG_INFO) Copying $$(patsubst $(OUTPUT_ROOT)/%,%,$$@)
kevinw@2223 457 $$($$(strip $4))
kevinw@2223 458
kevinw@2223 459 $3 += $2
kevinw@2223 460 endef
kevinw@2223 461
kevinw@2223 462 define SetupCopyFiles
kevinw@2223 463 # param 1 is for example COPY_MYFILES
kevinw@2223 464 # param 2,3,4,5 are named args.
kevinw@2223 465 # SRC : Source root dir (defaults to dir of first file)
kevinw@2223 466 # DEST : Dest root dir
kevinw@2223 467 # FILES : List of files to copy with absolute paths, or path relative to SRC.
kevinw@2223 468 # Must be in SRC.
kevinw@2223 469 # FLATTEN : Set to flatten the directory structure in the DEST dir.
kevinw@2223 470 # MACRO : Optionally override the default macro used for making the copy.
kevinw@2223 471 # Default is 'install-file'
kevinw@2223 472 $(foreach i,2 3 4 5 6, $(if $($i),$1_$(strip $($i)))$(NEWLINE))
kevinw@2223 473 $(call LogSetupMacroEntry,SetupCopyFiles($1),$2,$3,$4,$5,$6)
kevinw@2223 474 $(if $(7),$(error Internal makefile error: Too many arguments to SetupCopyFiles))
kevinw@2223 475
kevinw@2223 476 ifeq ($$($1_MACRO), )
kevinw@2223 477 $1_MACRO := install-file
kevinw@2223 478 endif
kevinw@2223 479
kevinw@2223 480 # Default SRC to the dir of the first file.
kevinw@2223 481 ifeq ($$($1_SRC), )
kevinw@2223 482 $1_SRC := $$(dir $$(firstword $$($1_FILES)))
kevinw@2223 483 endif
kevinw@2223 484
kevinw@2223 485 # Remove any trailing slash from SRC
kevinw@2223 486 $1_SRC := $$(patsubst %/,%,$$($1_SRC))
kevinw@2223 487
kevinw@2223 488 $$(foreach f, $$(patsubst $$($1_SRC)/%,%,$$($1_FILES)), \
kevinw@2223 489 $$(eval $$(call AddFileToCopy, $$($1_SRC)/$$f, \
kevinw@2223 490 $$($1_DEST)/$$(if $$($1_FLATTEN),$$(notdir $$f),$$f), $1, $$($1_MACRO))))
kevinw@2223 491
kevinw@2223 492 endef
kevinw@2223 493
kevinw@2223 494 ################################################################################
kevinw@2223 495
ohair@425 496 endif # _MAKEBASE_GMK

mercurial