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