make/common/MakeBase.gmk

Thu, 27 Dec 2018 11:47:57 +0800

author
aoqi
date
Thu, 27 Dec 2018 11:47:57 +0800
changeset 2316
64a3eeabf6e5
parent 2223
01cc48ed67f3
parent 1133
50aaf272884f
child 2438
f4b08401e50d
permissions
-rw-r--r--

Merge

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

mercurial