make/common/MakeBase.gmk
author ihse
Mon, 16 Apr 2018 11:48:41 +0200
branchihse-jdk-library-branch
changeset 56433 c3cf838aa2da
parent 49270 f6ad4d73c834
child 50590 5fa19bad622d
permissions -rw-r--r--
Initial fix for setting SRC automatically + HEADER_FLAGS.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     1
#
49024
953b3fd36b08 8196997: VS2017 The non-Standard std::tr1 namespace and TR1-only machinery are deprecated and will be removed
lfoltan
parents: 48078
diff changeset
     2
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
12258
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
# Setup common utility functions.
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    29
#
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
ifndef _MAKEBASE_GMK
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    33
_MAKEBASE_GMK := 1
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    34
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    35
ifeq ($(wildcard $(SPEC)),)
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    36
  $(error MakeBase.gmk needs SPEC set to a proper spec.gmk)
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    37
endif
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    38
29861
cb5d893c3282 8077814: Add .DELETE_ON_ERROR to makefiles
erikj
parents: 29662
diff changeset
    39
# By defining this pseudo target, make will automatically remove targets
cb5d893c3282 8077814: Add .DELETE_ON_ERROR to makefiles
erikj
parents: 29662
diff changeset
    40
# if their recipe fails so that a rebuild is automatically triggered on the
cb5d893c3282 8077814: Add .DELETE_ON_ERROR to makefiles
erikj
parents: 29662
diff changeset
    41
# next make invocation.
cb5d893c3282 8077814: Add .DELETE_ON_ERROR to makefiles
erikj
parents: 29662
diff changeset
    42
.DELETE_ON_ERROR:
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    43
32460
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    44
################################################################################
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    45
# Definitions for special characters
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    46
################################################################################
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    47
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    48
# When calling macros, the spaces between arguments are
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    49
# often semantically important! Sometimes we need to subst
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    50
# spaces and commas, therefore we need the following macros.
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    51
X:=
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    52
SPACE:=$(X) $(X)
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    53
COMMA:=,
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    54
DOLLAR:=$$
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    55
HASH:=\#
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    56
LEFT_PAREN:=(
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    57
RIGHT_PAREN:=)
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    58
SQUOTE:='
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    59
#'
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    60
DQUOTE:="
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    61
#"
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    62
define NEWLINE
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    63
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    64
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    65
endef
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
    66
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
    67
# In GNU Make 4.0 and higher, there is a file function for writing to files.
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
    68
ifeq (4.0, $(firstword $(sort 4.0 $(MAKE_VERSION))))
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
    69
  HAS_FILE_FUNCTION := true
49270
f6ad4d73c834 8199884: JDK-8199749 broke build with make 3.81
erikj
parents: 49244
diff changeset
    70
  CORRECT_FUNCTION_IN_RECIPE_EVALUATION := true
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
    71
endif
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
    72
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    73
##############################
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    74
# Functions
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    75
##############################
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    76
30095
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
    77
### Debug functions
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
    78
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
    79
# Prints the name and value of a variable
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
    80
PrintVar = \
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
    81
    $(info $(strip $1) >$($(strip $1))<)
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    82
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    83
### Functions for timers
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    84
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    85
# Store the build times in this directory.
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47217
diff changeset
    86
BUILDTIMESDIR=$(OUTPUTDIR)/make-support/build-times
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    87
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    88
# Record starting time for build of a sub repository.
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    89
define RecordStartTime
35008
ef0cd710989f 8146403: Windows build can be faster
erikj
parents: 34596
diff changeset
    90
	$(DATE) '+%Y %m %d %H %M %S' | $(NAWK) '{ print $$1,$$2,$$3,$$4,$$5,$$6,($$4*3600+$$5*60+$$6) }' > $(BUILDTIMESDIR)/build_time_start_$(strip $1) && \
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    91
	$(DATE) '+%Y-%m-%d %H:%M:%S' > $(BUILDTIMESDIR)/build_time_start_$(strip $1)_human_readable
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    92
endef
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    93
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    94
# Record ending time and calculate the difference and store it in a
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    95
# easy to read format. Handles builds that cross midnight. Expects
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    96
# that a build will never take 24 hours or more.
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    97
define RecordEndTime
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    98
	$(DATE) '+%Y %m %d %H %M %S' | $(NAWK) '{ print $$1,$$2,$$3,$$4,$$5,$$6,($$4*3600+$$5*60+$$6) }' > $(BUILDTIMESDIR)/build_time_end_$(strip $1)
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
    99
	$(DATE) '+%Y-%m-%d %H:%M:%S' > $(BUILDTIMESDIR)/build_time_end_$(strip $1)_human_readable
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   100
	$(ECHO) `$(CAT) $(BUILDTIMESDIR)/build_time_start_$(strip $1)` `$(CAT) $(BUILDTIMESDIR)/build_time_end_$(strip $1)` $1 | \
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   101
	    $(NAWK) '{ F=$$7; T=$$14; if (F > T) { T+=3600*24 }; D=T-F; H=int(D/3600); \
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   102
	    M=int((D-H*3600)/60); S=D-H*3600-M*60; printf("%02d:%02d:%02d %s\n",H,M,S,$$15); }' \
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   103
	    > $(BUILDTIMESDIR)/build_time_diff_$(strip $1)
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   104
endef
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   105
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   106
# Hook to be called when starting to execute a top-level target
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   107
define TargetEnter
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   108
	$(PRINTF) "## Starting $(patsubst %-only,%,$@)\n"
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   109
	$(call RecordStartTime,$(patsubst %-only,%,$@))
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   110
endef
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   111
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   112
# Hook to be called when finish executing a top-level target
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   113
define TargetExit
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   114
	$(call RecordEndTime,$(patsubst %-only,%,$@))
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   115
	$(PRINTF) "## Finished $(patsubst %-only,%,$@) (build time %s)\n\n" \
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   116
	    "`$(CAT) $(BUILDTIMESDIR)/build_time_diff_$(patsubst %-only,%,$@) | $(CUT) -f 1 -d ' '`"
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   117
endef
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   118
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   119
################################################################################
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   120
# This macro translates $ into \$ to protect the $ from expansion in the shell.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   121
# To make this macro resilient against already escaped strings, first remove
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   122
# any present escapes before escaping so that no double escapes are added.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   123
EscapeDollar = $(subst $$,\$$,$(subst \$$,$$,$(strip $1)))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   124
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   125
################################################################################
42134
bbcdb49521b1 8169860: Clean up and unify the refactored Javadoc generation
ihse
parents: 41875
diff changeset
   126
# This macro works just like EscapeDollar above, but for #.
bbcdb49521b1 8169860: Clean up and unify the refactored Javadoc generation
ihse
parents: 41875
diff changeset
   127
EscapeHash = $(subst \#,\\\#,$(subst \\\#,\#,$(strip $1)))
bbcdb49521b1 8169860: Clean up and unify the refactored Javadoc generation
ihse
parents: 41875
diff changeset
   128
bbcdb49521b1 8169860: Clean up and unify the refactored Javadoc generation
ihse
parents: 41875
diff changeset
   129
################################################################################
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   130
# This macro translates $ into $$ to protect the string from make itself.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   131
DoubleDollar = $(subst $$,$$$$,$(strip $1))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   132
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   133
################################################################################
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   134
# ListPathsSafely can be used to print command parameters to a file. This is
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   135
# typically done if the command line lenght risk being too long for the
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   136
# OS/shell. In later make versions, the file function can be used for this
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   137
# purpose. For earlier versions, a more complex implementation is provided.
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   138
#
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   139
# The function ListPathsSafely can be called either directly or, more commonly
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   140
# from a recipe line. If called from a recipe, it will be executed in the
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   141
# evaluation phase of that recipe, which means that it will write to the file
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   142
# before any other line in the recipe has been run.
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   143
ifeq ($(HAS_FILE_FUNCTION), true)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   144
  # Param 1 - Name of variable containing paths/arguments to output
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   145
  # Param 2 - File to print to
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   146
  # Param 3 - Set to true to append to file instead of overwriting
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   147
  define ListPathsSafely
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   148
    $$(call MakeDir, $$(dir $$(strip $2)))
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   149
    $$(file $$(if $$(filter true, $$(strip $3)),>>,>) \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   150
        $$(strip $2),$$(subst $$(SPACE),$$(NEWLINE),$$(strip $$($$(strip $1)))))
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   151
  endef
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   152
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   153
else # HAS_FILE_FUNCTION = false
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   154
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   155
  $(eval compress_paths = \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45369
diff changeset
   156
      $(strip $(shell $(CAT) $(TOPDIR)/make/common/support/ListPathsSafely-pre-compress.incl)))
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   157
  compress_paths += \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45369
diff changeset
   158
      $(subst $(TOPDIR),X97, \
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47217
diff changeset
   159
      $(subst $(OUTPUTDIR),X98, \
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   160
      $(subst X,X00, \
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   161
      $(subst $(SPACE),\n,$(strip $1)))))
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   162
  $(eval compress_paths += \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45369
diff changeset
   163
      $(strip $(shell $(CAT) $(TOPDIR)/make/common/support/ListPathsSafely-post-compress.incl)))
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   164
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45369
diff changeset
   165
  decompress_paths=$(SED) -f $(TOPDIR)/make/common/support/ListPathsSafely-uncompress.sed \
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   166
      -e 's|X99|\\n|g' \
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47217
diff changeset
   167
      -e 's|X98|$(OUTPUTDIR)|g' -e 's|X97|$(TOPDIR)|g' \
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   168
      -e 's|X00|X|g'
14279
1c596d0f411c 8002183: Increased max number of paths to list in ListPathsSafely to 16000.
erikj
parents: 14111
diff changeset
   169
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   170
  ListPathsSafely_IfPrintf = \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   171
      $(if $(word $3,$($(strip $1))), \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   172
          $(shell $(PRINTF) -- "$(strip $(call EscapeDollar, \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   173
              $(call compress_paths, $(wordlist $3,$4,$($(strip $1))))))\n" \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   174
              | $(decompress_paths) >> $2))
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   175
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   176
  # Param 1 - Name of variable containing paths/arguments to output
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   177
  # Param 2 - File to print to
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   178
  # Param 3 - Set to true to append to file instead of overwriting
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   179
  define ListPathsSafely
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   180
    ifneq (,$$(word 30001,$$($$(strip $1))))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   181
      $$(error Cannot list safely more than 30000 paths. $1 has $$(words $$($$(strip $1))) paths!)
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   182
    endif
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   183
    $$(call MakeDir, $$(dir $2))
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   184
    ifneq ($$(strip $3), true)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   185
      $$(shell $(RM) $$(strip $2))
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   186
    endif
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   187
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   188
    $$(call ListPathsSafely_IfPrintf,$1,$2,1,250)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   189
    $$(call ListPathsSafely_IfPrintf,$1,$2,251,500)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   190
    $$(call ListPathsSafely_IfPrintf,$1,$2,501,750)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   191
    $$(call ListPathsSafely_IfPrintf,$1,$2,751,1000)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   192
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   193
    $$(call ListPathsSafely_IfPrintf,$1,$2,1001,1250)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   194
    $$(call ListPathsSafely_IfPrintf,$1,$2,1251,1500)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   195
    $$(call ListPathsSafely_IfPrintf,$1,$2,1501,1750)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   196
    $$(call ListPathsSafely_IfPrintf,$1,$2,1751,2000)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   197
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   198
    $$(call ListPathsSafely_IfPrintf,$1,$2,2001,2250)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   199
    $$(call ListPathsSafely_IfPrintf,$1,$2,2251,2500)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   200
    $$(call ListPathsSafely_IfPrintf,$1,$2,2501,2750)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   201
    $$(call ListPathsSafely_IfPrintf,$1,$2,2751,3000)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   202
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   203
    $$(call ListPathsSafely_IfPrintf,$1,$2,3001,3250)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   204
    $$(call ListPathsSafely_IfPrintf,$1,$2,3251,3500)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   205
    $$(call ListPathsSafely_IfPrintf,$1,$2,3501,3750)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   206
    $$(call ListPathsSafely_IfPrintf,$1,$2,3751,4000)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   207
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   208
    $$(call ListPathsSafely_IfPrintf,$1,$2,4001,4250)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   209
    $$(call ListPathsSafely_IfPrintf,$1,$2,4251,4500)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   210
    $$(call ListPathsSafely_IfPrintf,$1,$2,4501,4750)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   211
    $$(call ListPathsSafely_IfPrintf,$1,$2,4751,5000)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   212
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   213
    $$(call ListPathsSafely_IfPrintf,$1,$2,5001,5250)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   214
    $$(call ListPathsSafely_IfPrintf,$1,$2,5251,5500)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   215
    $$(call ListPathsSafely_IfPrintf,$1,$2,5501,5750)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   216
    $$(call ListPathsSafely_IfPrintf,$1,$2,5751,6000)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   217
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   218
    $$(call ListPathsSafely_IfPrintf,$1,$2,6001,6250)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   219
    $$(call ListPathsSafely_IfPrintf,$1,$2,6251,6500)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   220
    $$(call ListPathsSafely_IfPrintf,$1,$2,6501,6750)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   221
    $$(call ListPathsSafely_IfPrintf,$1,$2,6751,7000)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   222
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   223
    $$(call ListPathsSafely_IfPrintf,$1,$2,7001,7250)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   224
    $$(call ListPathsSafely_IfPrintf,$1,$2,7251,7500)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   225
    $$(call ListPathsSafely_IfPrintf,$1,$2,7501,7750)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   226
    $$(call ListPathsSafely_IfPrintf,$1,$2,7751,8000)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   227
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   228
    $$(call ListPathsSafely_IfPrintf,$1,$2,8001,8250)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   229
    $$(call ListPathsSafely_IfPrintf,$1,$2,8251,8500)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   230
    $$(call ListPathsSafely_IfPrintf,$1,$2,8501,8750)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   231
    $$(call ListPathsSafely_IfPrintf,$1,$2,8751,9000)
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   232
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   233
    $$(call ListPathsSafely_IfPrintf,$1,$2,9001,9250)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   234
    $$(call ListPathsSafely_IfPrintf,$1,$2,9251,9500)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   235
    $$(call ListPathsSafely_IfPrintf,$1,$2,9501,9750)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   236
    $$(call ListPathsSafely_IfPrintf,$1,$2,9751,10000)
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   237
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   238
    $$(call ListPathsSafely_IfPrintf,$1,$2,10001,10250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   239
    $$(call ListPathsSafely_IfPrintf,$1,$2,10251,10500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   240
    $$(call ListPathsSafely_IfPrintf,$1,$2,10501,10750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   241
    $$(call ListPathsSafely_IfPrintf,$1,$2,10751,11000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   242
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   243
    $$(call ListPathsSafely_IfPrintf,$1,$2,11001,11250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   244
    $$(call ListPathsSafely_IfPrintf,$1,$2,11251,11500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   245
    $$(call ListPathsSafely_IfPrintf,$1,$2,11501,11750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   246
    $$(call ListPathsSafely_IfPrintf,$1,$2,11751,12000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   247
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   248
    $$(call ListPathsSafely_IfPrintf,$1,$2,12001,12250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   249
    $$(call ListPathsSafely_IfPrintf,$1,$2,12251,12500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   250
    $$(call ListPathsSafely_IfPrintf,$1,$2,12501,12750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   251
    $$(call ListPathsSafely_IfPrintf,$1,$2,12751,13000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   252
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   253
    $$(call ListPathsSafely_IfPrintf,$1,$2,13001,13250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   254
    $$(call ListPathsSafely_IfPrintf,$1,$2,13251,13500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   255
    $$(call ListPathsSafely_IfPrintf,$1,$2,13501,13750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   256
    $$(call ListPathsSafely_IfPrintf,$1,$2,13751,14000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   257
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   258
    $$(call ListPathsSafely_IfPrintf,$1,$2,14001,14250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   259
    $$(call ListPathsSafely_IfPrintf,$1,$2,14251,14500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   260
    $$(call ListPathsSafely_IfPrintf,$1,$2,14501,14750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   261
    $$(call ListPathsSafely_IfPrintf,$1,$2,14751,15000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   262
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   263
    $$(call ListPathsSafely_IfPrintf,$1,$2,15001,15250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   264
    $$(call ListPathsSafely_IfPrintf,$1,$2,15251,15500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   265
    $$(call ListPathsSafely_IfPrintf,$1,$2,15501,15750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   266
    $$(call ListPathsSafely_IfPrintf,$1,$2,15751,16000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   267
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   268
    $$(call ListPathsSafely_IfPrintf,$1,$2,16001,16250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   269
    $$(call ListPathsSafely_IfPrintf,$1,$2,16251,16500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   270
    $$(call ListPathsSafely_IfPrintf,$1,$2,16501,16750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   271
    $$(call ListPathsSafely_IfPrintf,$1,$2,16751,17000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   272
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   273
    $$(call ListPathsSafely_IfPrintf,$1,$2,17001,17250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   274
    $$(call ListPathsSafely_IfPrintf,$1,$2,17251,17500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   275
    $$(call ListPathsSafely_IfPrintf,$1,$2,17501,17750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   276
    $$(call ListPathsSafely_IfPrintf,$1,$2,17751,18000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   277
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   278
    $$(call ListPathsSafely_IfPrintf,$1,$2,18001,18250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   279
    $$(call ListPathsSafely_IfPrintf,$1,$2,18251,18500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   280
    $$(call ListPathsSafely_IfPrintf,$1,$2,18501,18750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   281
    $$(call ListPathsSafely_IfPrintf,$1,$2,18751,19000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   282
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   283
    $$(call ListPathsSafely_IfPrintf,$1,$2,19001,19250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   284
    $$(call ListPathsSafely_IfPrintf,$1,$2,19251,19500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   285
    $$(call ListPathsSafely_IfPrintf,$1,$2,19501,19750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   286
    $$(call ListPathsSafely_IfPrintf,$1,$2,19751,20000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   287
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   288
    $$(call ListPathsSafely_IfPrintf,$1,$2,20001,20250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   289
    $$(call ListPathsSafely_IfPrintf,$1,$2,20251,20500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   290
    $$(call ListPathsSafely_IfPrintf,$1,$2,20501,20750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   291
    $$(call ListPathsSafely_IfPrintf,$1,$2,20751,21000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   292
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   293
    $$(call ListPathsSafely_IfPrintf,$1,$2,21001,21250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   294
    $$(call ListPathsSafely_IfPrintf,$1,$2,21251,21500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   295
    $$(call ListPathsSafely_IfPrintf,$1,$2,21501,21750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   296
    $$(call ListPathsSafely_IfPrintf,$1,$2,21751,22000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   297
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   298
    $$(call ListPathsSafely_IfPrintf,$1,$2,22001,22250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   299
    $$(call ListPathsSafely_IfPrintf,$1,$2,22251,22500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   300
    $$(call ListPathsSafely_IfPrintf,$1,$2,22501,22750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   301
    $$(call ListPathsSafely_IfPrintf,$1,$2,22751,23000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   302
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   303
    $$(call ListPathsSafely_IfPrintf,$1,$2,23001,23250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   304
    $$(call ListPathsSafely_IfPrintf,$1,$2,23251,23500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   305
    $$(call ListPathsSafely_IfPrintf,$1,$2,23501,23750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   306
    $$(call ListPathsSafely_IfPrintf,$1,$2,23751,24000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   307
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   308
    $$(call ListPathsSafely_IfPrintf,$1,$2,24001,24250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   309
    $$(call ListPathsSafely_IfPrintf,$1,$2,24251,24500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   310
    $$(call ListPathsSafely_IfPrintf,$1,$2,24501,24750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   311
    $$(call ListPathsSafely_IfPrintf,$1,$2,24751,25000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   312
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   313
    $$(call ListPathsSafely_IfPrintf,$1,$2,25001,25250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   314
    $$(call ListPathsSafely_IfPrintf,$1,$2,25251,25500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   315
    $$(call ListPathsSafely_IfPrintf,$1,$2,25501,25750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   316
    $$(call ListPathsSafely_IfPrintf,$1,$2,25751,26000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   317
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   318
    $$(call ListPathsSafely_IfPrintf,$1,$2,26001,26250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   319
    $$(call ListPathsSafely_IfPrintf,$1,$2,26251,26500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   320
    $$(call ListPathsSafely_IfPrintf,$1,$2,26501,26750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   321
    $$(call ListPathsSafely_IfPrintf,$1,$2,26751,27000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   322
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   323
    $$(call ListPathsSafely_IfPrintf,$1,$2,27001,27250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   324
    $$(call ListPathsSafely_IfPrintf,$1,$2,27251,27500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   325
    $$(call ListPathsSafely_IfPrintf,$1,$2,27501,27750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   326
    $$(call ListPathsSafely_IfPrintf,$1,$2,27751,28000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   327
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   328
    $$(call ListPathsSafely_IfPrintf,$1,$2,28001,28250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   329
    $$(call ListPathsSafely_IfPrintf,$1,$2,28251,28500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   330
    $$(call ListPathsSafely_IfPrintf,$1,$2,28501,28750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   331
    $$(call ListPathsSafely_IfPrintf,$1,$2,28751,29000)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   332
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   333
    $$(call ListPathsSafely_IfPrintf,$1,$2,29001,29250)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   334
    $$(call ListPathsSafely_IfPrintf,$1,$2,29251,29500)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   335
    $$(call ListPathsSafely_IfPrintf,$1,$2,29501,29750)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   336
    $$(call ListPathsSafely_IfPrintf,$1,$2,29751,30000)
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   337
  endef
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   338
endif # HAS_FILE_FUNCTION
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   339
35008
ef0cd710989f 8146403: Windows build can be faster
erikj
parents: 34596
diff changeset
   340
################################################################################
42282
faf3b6722c44 8031567: Better model for storing source revision information
ihse
parents: 42134
diff changeset
   341
faf3b6722c44 8031567: Better model for storing source revision information
ihse
parents: 42134
diff changeset
   342
# A file containing a way to uniquely identify the source code revision that
faf3b6722c44 8031567: Better model for storing source revision information
ihse
parents: 42134
diff changeset
   343
# the build was created from
faf3b6722c44 8031567: Better model for storing source revision information
ihse
parents: 42134
diff changeset
   344
SOURCE_REVISION_TRACKER := $(SUPPORT_OUTPUTDIR)/src-rev/source-revision-tracker
faf3b6722c44 8031567: Better model for storing source revision information
ihse
parents: 42134
diff changeset
   345
faf3b6722c44 8031567: Better model for storing source revision information
ihse
parents: 42134
diff changeset
   346
# Locate all hg repositories included in the forest, as absolute paths
39110
712f29ba8708 8136771: Implement the license-swap logic as a make target
erikj
parents: 37972
diff changeset
   347
FindAllReposAbs = \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45369
diff changeset
   348
    $(strip $(sort $(dir $(filter-out $(TOPDIR)/build/%, $(wildcard \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45369
diff changeset
   349
        $(addprefix $(TOPDIR)/, .hg */.hg */*/.hg */*/*/.hg */*/*/*/.hg) \
39110
712f29ba8708 8136771: Implement the license-swap logic as a make target
erikj
parents: 37972
diff changeset
   350
    )))))
712f29ba8708 8136771: Implement the license-swap logic as a make target
erikj
parents: 37972
diff changeset
   351
42282
faf3b6722c44 8031567: Better model for storing source revision information
ihse
parents: 42134
diff changeset
   352
# Locate all hg repositories included in the forest, as relative paths
39110
712f29ba8708 8136771: Implement the license-swap logic as a make target
erikj
parents: 37972
diff changeset
   353
FindAllReposRel = \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45369
diff changeset
   354
    $(strip $(subst $(TOPDIR)/,.,$(patsubst $(TOPDIR)/%/, %, $(FindAllReposAbs))))
12801
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   355
35008
ef0cd710989f 8146403: Windows build can be faster
erikj
parents: 34596
diff changeset
   356
################################################################################
ef0cd710989f 8146403: Windows build can be faster
erikj
parents: 34596
diff changeset
   357
12801
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   358
define SetupLogging
44465
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44027
diff changeset
   359
  ifeq ($$(LOG_PROFILE_TIMES_FILE), true)
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44027
diff changeset
   360
    ifeq ($$(IS_GNU_TIME), yes)
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45369
diff changeset
   361
      SHELL :=  $$(BASH) $$(TOPDIR)/make/scripts/shell-profiler.sh \
44465
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44027
diff changeset
   362
                gnutime $$(TIME) \
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47217
diff changeset
   363
                $$(OUTPUTDIR)/build-profile.log $$(SHELL)
44465
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44027
diff changeset
   364
    else ifneq ($$(FLOCK), )
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45369
diff changeset
   365
      SHELL :=  $$(BASH) $$(TOPDIR)/make/scripts/shell-profiler.sh \
44465
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44027
diff changeset
   366
                flock $$(FLOCK) \
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47217
diff changeset
   367
                $$(OUTPUTDIR)/build-profile.log $$(SHELL)
44465
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44027
diff changeset
   368
    endif
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44027
diff changeset
   369
  endif
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44027
diff changeset
   370
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   371
  ifeq ($$(LOG_LEVEL), trace)
44465
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44027
diff changeset
   372
    SHELL_NO_RECURSE := $$(SHELL)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   373
    # 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
   374
    # For each target executed, will print
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   375
    # Building <TARGET> (from <FIRST PREREQUISITE>) (<ALL NEWER PREREQUISITES> newer)
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   376
    # 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
   377
    # (and causing a crash on Cygwin).
44465
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44027
diff changeset
   378
    SHELL = $$(warning $$(if $$@,Building $$@,Running shell command) $$(if $$<, (from $$<))$$(if $$?, ($$(wordlist 1, 20, $$?) $$(if $$(wordlist 21, 22, $$?), ... [in total $$(words $$?) files]) newer)))$$(SHELL_NO_RECURSE) -x
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   379
  endif
44465
26fabd8abee9 8177770: Need more precise control on build system logging
asemenyuk
parents: 44027
diff changeset
   380
35444
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   381
  # The warn level can never be turned off
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   382
  LogWarn = $$(info $$(strip $$1))
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   383
  LOG_WARN :=
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   384
  ifneq ($$(findstring $$(LOG_LEVEL), info debug trace),)
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   385
    LogInfo = $$(info $$(strip $$1))
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   386
    LOG_INFO :=
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   387
  else
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   388
    LogInfo =
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   389
    LOG_INFO := > /dev/null
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   390
  endif
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   391
  ifneq ($$(findstring $$(LOG_LEVEL), debug trace),)
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   392
    LogDebug = $$(info $$(strip $$1))
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   393
    LOG_DEBUG :=
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   394
  else
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   395
    LogDebug =
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   396
    LOG_DEBUG := > /dev/null
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   397
  endif
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   398
  ifneq ($$(findstring $$(LOG_LEVEL), trace),)
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   399
    LogTrace = $$(info $$(strip $$1))
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   400
    LOG_TRACE :=
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   401
  else
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   402
    LogTrace =
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29312
diff changeset
   403
    LOG_TRACE := > /dev/null
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   404
  endif
12801
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   405
endef
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   406
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   407
# Make sure logging is setup for everyone that includes MakeBase.gmk.
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   408
$(eval $(call SetupLogging))
948f8ad66ee7 7170079: Adjustments to build-infra makefiles
erikj
parents: 12258
diff changeset
   409
29312
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   410
################################################################################
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   411
# Creates a sequence of increasing numbers (inclusive).
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   412
# Param 1 - starting number
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   413
# Param 2 - ending number
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   414
sequence = \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   415
    $(wordlist $1, $2, $(strip \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   416
        $(eval SEQUENCE_COUNT :=) \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   417
        $(call _sequence-do,$(strip $2))))
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   418
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   419
_sequence-do = \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   420
    $(if $(word $1, $(SEQUENCE_COUNT)),, \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   421
      $(eval SEQUENCE_COUNT += .) \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   422
      $(words $(SEQUENCE_COUNT)) \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   423
      $(call _sequence-do,$1))
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   424
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   425
################################################################################
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   426
49024
953b3fd36b08 8196997: VS2017 The non-Standard std::tr1 namespace and TR1-only machinery are deprecated and will be removed
lfoltan
parents: 48078
diff changeset
   427
MAX_PARAMS := 36
29312
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   428
PARAM_SEQUENCE := $(call sequence, 2, $(MAX_PARAMS))
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   429
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   430
# Template for creating a macro taking named parameters. To use it, assign the
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   431
# template to a variable with the name you want for your macro, using '='
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   432
# assignment. Then define a macro body with the suffix "Body". The Body macro
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   433
# should take 1 parameter which should be a unique string for that invocation
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   434
# of the macro.
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   435
# Ex:
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   436
# SetupFoo = $(NamedParamsMacroTemplate)
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   437
# define SetupFooBody
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   438
#   # do something
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   439
#   # access parameters as $$($1_BAR)
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   440
# endef
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   441
# Call it like this
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   442
# $(eval $(call SetupFoo, BUILD_SOMETHING, \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   443
#     BAR := some parameter value, \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   444
# ))
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   445
define NamedParamsMacroTemplate
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   446
  $(if $($(MAX_PARAMS)),$(error Internal makefile error: \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   447
      Too many named arguments to macro, please update MAX_PARAMS in MakeBase.gmk))
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   448
  # Iterate over 2 3 4... and evaluate the named parameters with $1_ as prefix
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   449
  $(foreach i,$(PARAM_SEQUENCE), $(if $(strip $($i)),\
43044
6ff517127736 8171932: unresolved macro in javadoc command
erikj
parents: 42983
diff changeset
   450
    $(strip $1)_$(strip $(call EscapeHash, $(call DoubleDollar, $($i))))$(NEWLINE)))
29312
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   451
  # Debug print all named parameter names and values
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   452
  $(if $(findstring $(LOG_LEVEL),debug trace), \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   453
    $(info $0 $(strip $1) $(foreach i,$(PARAM_SEQUENCE), \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   454
      $(if $(strip $($i)),$(NEWLINE) $(strip [$i] $(if $(filter $(LOG_LEVEL), trace), \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   455
        $($i), $(wordlist 1, 20, $($(i))) $(if $(word 21, $($(i))), ...)))))))
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   456
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   457
  $(if $(DEBUG_$(strip $1)),
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   458
    $(info -------- <<< Begin expansion of $(strip $1)) \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   459
    $(info $(call $(0)Body,$(strip $1))) \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   460
    $(info -------- >>> End expansion of $(strip $1)) \
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   461
  )
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   462
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   463
  $(call $(0)Body,$(strip $1))
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   464
endef
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   465
29312
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   466
################################################################################
47334
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   467
# Replace question marks with space in string. This macro needs to be called on
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   468
# files from CacheFind in case any of them contains space in their file name,
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   469
# since CacheFind replaces space with ?.
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   470
# Param 1 - String to replace in
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   471
DecodeSpace = \
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   472
    $(subst ?,$(SPACE),$(strip $1))
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   473
EncodeSpace = \
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   474
    $(subst $(SPACE),?,$(strip $1))
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   475
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   476
################################################################################
47751
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   477
# Make directory without forking mkdir if not needed.
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   478
#
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   479
# If a directory with an encoded space is provided, the wildcard function
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   480
# sometimes returns false answers (typically if the dir existed when the
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   481
# makefile was parsed, but was deleted by a previous rule). In that case, always
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   482
# call mkdir regardless of what wildcard says.
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   483
#
35008
ef0cd710989f 8146403: Windows build can be faster
erikj
parents: 34596
diff changeset
   484
# 1: List of directories to create
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   485
MakeDir = \
35444
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   486
    $(strip \
47751
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   487
        $(eval MakeDir_dirs_to_make := $(strip $(foreach d, $1, \
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   488
          $(if $(findstring ?, $d), '$(call DecodeSpace, $d)', \
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   489
            $(if $(wildcard $d), , $d) \
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   490
          ) \
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   491
        ))) \
35444
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   492
        $(if $(MakeDir_dirs_to_make), $(shell $(MKDIR) -p $(MakeDir_dirs_to_make))) \
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   493
    )
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   494
47751
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   495
# Make directory for target file. Should handle spaces in filenames. Just
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   496
# calling $(call MakeDir $(@D)) will not work if the directory contains a space
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   497
# and the target file already exists. In that case, the target file will have
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   498
# its wildcard ? resolved and the $(@D) will evaluate each space separated dir
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   499
# part on its own.
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   500
MakeTargetDir = \
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   501
    $(call MakeDir, $(dir $(call EncodeSpace, $@)))
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   502
29312
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   503
################################################################################
29866
6cecef2d84ab 8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents: 29861
diff changeset
   504
# Assign a variable only if it is empty
6cecef2d84ab 8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents: 29861
diff changeset
   505
# Param 1 - Variable to assign
6cecef2d84ab 8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents: 29861
diff changeset
   506
# Param 2 - Value to assign
6cecef2d84ab 8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents: 29861
diff changeset
   507
SetIfEmpty = \
6cecef2d84ab 8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents: 29861
diff changeset
   508
    $(if $($(strip $1)),,$(eval $(strip $1) := $2))
6cecef2d84ab 8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents: 29861
diff changeset
   509
6cecef2d84ab 8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents: 29861
diff changeset
   510
################################################################################
47334
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   511
# All install-file and related macros automatically call DecodeSpace when needed.
29312
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   512
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   513
ifeq ($(OPENJDK_TARGET_OS),solaris)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   514
  # 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
   515
  # 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
   516
  # 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
   517
  # 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
   518
  # 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
   519
  define install-file
47751
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   520
	$(call MakeTargetDir)
47348
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   521
	$(RM) '$(call DecodeSpace, $@)'
49205
d1a19a08389a 8199428: install-file macro fails on filenames with space on Solaris
erikj
parents: 49067
diff changeset
   522
	if [ '$(call DecodeSpace, $(dir $(call EncodeSpace, $@)))' != \
47348
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   523
	    '$(call DecodeSpace, $(dir $(call EncodeSpace, $<)))' ]; then \
49205
d1a19a08389a 8199428: install-file macro fails on filenames with space on Solaris
erikj
parents: 49067
diff changeset
   524
	  $(CP) -f -r -P '$(call DecodeSpace, $<)' \
d1a19a08389a 8199428: install-file macro fails on filenames with space on Solaris
erikj
parents: 49067
diff changeset
   525
	      '$(call DecodeSpace, $(dir $(call EncodeSpace, $@)))'; \
d1a19a08389a 8199428: install-file macro fails on filenames with space on Solaris
erikj
parents: 49067
diff changeset
   526
	  if [ '$(call DecodeSpace, $(notdir $(call EncodeSpace, $@)))' != \
47348
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   527
	      '$(call DecodeSpace, $(notdir $(call EncodeSpace, $(<))))' ]; then \
49205
d1a19a08389a 8199428: install-file macro fails on filenames with space on Solaris
erikj
parents: 49067
diff changeset
   528
	    $(MV) '$(call DecodeSpace, $(dir $(call EncodeSpace, $@))/$(notdir $(call EncodeSpace, $<)))' \
d1a19a08389a 8199428: install-file macro fails on filenames with space on Solaris
erikj
parents: 49067
diff changeset
   529
	        '$(call DecodeSpace, $@)'; \
23168
d20a4165e3d2 8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents: 21759
diff changeset
   530
	  fi; \
d20a4165e3d2 8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents: 21759
diff changeset
   531
	else \
47348
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   532
	  if [ -L '$(call DecodeSpace, $<)' ]; then \
23168
d20a4165e3d2 8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents: 21759
diff changeset
   533
	    $(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
   534
	    exit 1; \
d20a4165e3d2 8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents: 21759
diff changeset
   535
	  fi; \
47348
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   536
	  $(CP) -f '$(call DecodeSpace, $<)' '$(call DecodeSpace, $@)'; \
23168
d20a4165e3d2 8036948: Solaris builds broken by fix for 8036611: Cleanup of handling of properties ...
erikj
parents: 21759
diff changeset
   537
	fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   538
  endef
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   539
else ifeq ($(OPENJDK_TARGET_OS),macosx)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   540
  # 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
   541
  # 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
   542
  # 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
   543
  # 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
   544
  # attributes when they are present, failing on this is avoided.
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   545
  #
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   546
  # If copying a soft link to a directory, need to delete the target first to avoid
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents: 37770
diff changeset
   547
  # weird errors.
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   548
  define install-file
47751
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   549
	$(call MakeTargetDir)
47348
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   550
	$(RM) '$(call DecodeSpace, $@)'
48912
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   551
        # Work around a weirdness with cp on Macosx. When copying a symlink, if
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   552
        # the target of the link is write protected (e.g. 444), cp will add
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   553
        # write permission for the user on the target file (644). Avoid this by
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   554
        # using ln to create a new link instead.
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   555
	if [ -h '$(call DecodeSpace, $<)' ]; then \
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   556
	  $(LN) -s "`$(READLINK) '$(call DecodeSpace, $<)'`" '$(call DecodeSpace, $@)'; \
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   557
	else \
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   558
	  $(CP) -fRP '$(call DecodeSpace, $<)' '$(call DecodeSpace, $@)'; \
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   559
	fi
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   560
	if [ -n "`$(XATTR) -ls '$(call DecodeSpace, $@)'`" ]; then \
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   561
	  $(XATTR) -cs '$(call DecodeSpace, $@)'; \
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
   562
	fi
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   563
  endef
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   564
else
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   565
  define install-file
47751
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   566
	$(call MakeTargetDir)
47348
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   567
	$(CP) -fP '$(call DecodeSpace, $<)' '$(call DecodeSpace, $@)'
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   568
  endef
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   569
endif
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
   570
42425
57cde06ae8d6 8141590: Cannot build Zero with devkit
erikj
parents: 42282
diff changeset
   571
# Variant of install file that does not preserve symlinks
57cde06ae8d6 8141590: Cannot build Zero with devkit
erikj
parents: 42282
diff changeset
   572
define install-file-nolink
47751
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   573
	$(call MakeTargetDir)
47348
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   574
	$(CP) -f '$(call DecodeSpace, $<)' '$(call DecodeSpace, $@)'
42425
57cde06ae8d6 8141590: Cannot build Zero with devkit
erikj
parents: 42282
diff changeset
   575
endef
57cde06ae8d6 8141590: Cannot build Zero with devkit
erikj
parents: 42282
diff changeset
   576
29312
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   577
################################################################################
41260
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   578
# Take two paths and return the path of the last common directory.
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   579
# Ex: /foo/bar/baz, /foo/bar/banan -> /foo/bar
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   580
#     foo/bar/baz, /foo/bar -> <empty>
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   581
#
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   582
# The x prefix is used to preserve the presence of the initial slash
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   583
#
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   584
# $1 - Path to compare
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   585
# $2 - Other path to compare
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   586
FindCommonPathPrefix = \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   587
    $(patsubst x%,%,$(subst $(SPACE),/,$(strip \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   588
        $(call FindCommonPathPrefixHelper, \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   589
            $(subst /,$(SPACE),x$(strip $1)), $(subst /,$(SPACE),x$(strip $2))) \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   590
    )))
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   591
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   592
FindCommonPathPrefixHelper = \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   593
    $(if $(call equals, $(firstword $1), $(firstword $2)), \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   594
      $(firstword $1) \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   595
      $(call FindCommonPathPrefixHelper, \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   596
          $(wordlist 2, $(words $1), $1), $(wordlist 2, $(words $2), $2) \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   597
      ) \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   598
    )
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   599
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   600
# Convert a partial path into as many directory levels of ../, removing
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   601
# leading and following /.
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   602
# Ex: foo/bar/baz/ -> ../../..
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   603
#     foo/bar -> ../..
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   604
#     /foo -> ..
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   605
DirToDotDot = \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   606
    $(subst $(SPACE),/,$(foreach d, $(subst /,$(SPACE),$1),..))
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   607
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   608
# Computes the relative path from a directory to a file
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   609
# $1 - File to compute the relative path to
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   610
# $2 - Directory to compute the relative path from
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   611
RelativePath = \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   612
    $(eval $1_prefix := $(call FindCommonPathPrefix, $1, $2)) \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   613
    $(eval $1_dotdots := $(call DirToDotDot, $(patsubst $($(strip $1)_prefix)/%, %, $2))) \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   614
    $(eval $1_suffix := $(patsubst $($(strip $1)_prefix)/%, %, $1)) \
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   615
    $($(strip $1)_dotdots)/$($(strip $1)_suffix)
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   616
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   617
################################################################################
41658
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41260
diff changeset
   618
# link-file-* works similarly to install-file but creates a symlink instead.
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41260
diff changeset
   619
# There are two versions, either creating a relative or an absolute link. Be
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41260
diff changeset
   620
# careful when using this on Windows since the symlink created is only valid in
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41260
diff changeset
   621
# the unix emulation environment.
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41260
diff changeset
   622
define link-file-relative
47751
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   623
	$(call MakeTargetDir)
47348
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   624
	$(RM) '$(call DecodeSpace, $@)'
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   625
	$(LN) -s '$(call DecodeSpace, $(call RelativePath, $<, $(@D)))' '$(call DecodeSpace, $@)'
41658
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41260
diff changeset
   626
endef
41260
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   627
41658
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41260
diff changeset
   628
define link-file-absolute
47751
f7e430cbfe34 8190702: JMC packaging causing errors in JDK 10 consolidated repo (macOS)
erikj
parents: 47715
diff changeset
   629
	$(call MakeTargetDir)
47348
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   630
	$(RM) '$(call DecodeSpace, $@)'
504e70cd64ad 8189324: install-file macro no longer handles files with $ in them
erikj
parents: 47334
diff changeset
   631
	$(LN) -s '$(call DecodeSpace, $<)' '$(call DecodeSpace, $@)'
41658
14de1ab85d25 8062810: Examine src.zip in JDK image and decide if source classes should be organized by module
erikj
parents: 41260
diff changeset
   632
endef
41260
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   633
4f71f07b30d1 8150736: Excessive disk space used by build system
erikj
parents: 40241
diff changeset
   634
################################################################################
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   635
# Filter out duplicate sub strings while preserving order. Keeps the first occurance.
29156
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 28906
diff changeset
   636
uniq = \
56433
c3cf838aa2da Initial fix for setting SRC automatically + HEADER_FLAGS.
ihse
parents: 49270
diff changeset
   637
    $(strip $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1))))
29156
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 28906
diff changeset
   638
32553
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   639
# Returns all whitespace-separated words in $2 where at least one of the
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   640
# whitespace-separated words in $1 is a substring.
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   641
containing = \
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   642
    $(strip \
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   643
        $(foreach v,$(strip $2),\
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   644
          $(call uniq,$(foreach p,$(strip $1),$(if $(findstring $p,$v),$v)))))
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   645
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   646
# Returns all whitespace-separated words in $2 where none of the
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   647
# whitespace-separated words in $1 is a substring.
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   648
not-containing = \
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   649
    $(strip $(filter-out $(call containing,$1,$2),$2))
418e3b5ff477 8136383: Improve make utilities containing and not-containing
erikj
parents: 32460
diff changeset
   650
29156
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 28906
diff changeset
   651
# Return a list of all string elements that are duplicated in $1.
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 28906
diff changeset
   652
dups = \
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 28906
diff changeset
   653
    $(strip $(foreach v, $(sort $1), $(if $(filter-out 1, \
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 28906
diff changeset
   654
        $(words $(filter $v, $1))), $v)))
15051
d32ad37472e6 8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents: 14279
diff changeset
   655
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   656
# String equals
28607
380f123263d8 8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents: 28606
diff changeset
   657
equals = \
380f123263d8 8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents: 28606
diff changeset
   658
    $(and $(findstring $(strip $1),$(strip $2)),\
380f123263d8 8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents: 28606
diff changeset
   659
        $(findstring $(strip $2),$(strip $1)))
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   660
30095
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
   661
# Remove a whole list of prefixes
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
   662
# $1 - List of prefixes
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
   663
# $2 - List of elements to process
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
   664
remove-prefixes = \
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
   665
    $(strip $(if $1,$(patsubst $(firstword $1)%,%,\
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
   666
      $(call remove-prefixes,$(filter-out $(firstword $1),$1),$2)),$2))
0034766ccb09 8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents: 29866
diff changeset
   667
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   668
# Convert the string given to upper case, without any $(shell)
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   669
# Inspired by http://lists.gnu.org/archive/html/help-make/2013-09/msg00009.html
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   670
uppercase_table := a,A b,B c,C d,D e,E f,F g,G h,H i,I j,J k,K l,L m,M n,N o,O \
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   671
    p,P q,Q r,R s,S t,T u,U v,V w,W x,X y,Y z,Z
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   672
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   673
uppercase_internal = \
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   674
  $(if $(strip $1), $$(subst $(firstword $1), $(call uppercase_internal, \
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   675
      $(wordlist 2, $(words $1), $1), $2)), $2)
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   676
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   677
# Convert a string to upper case. Works only on a-z.
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   678
# $1 - The string to convert
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   679
uppercase = \
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   680
  $(strip \
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   681
    $(eval uppercase_result := $(call uppercase_internal, $(uppercase_table), $1)) \
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   682
    $(uppercase_result) \
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   683
  )
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   684
29312
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   685
################################################################################
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   686
23170
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   687
ifneq ($(DISABLE_CACHE_FIND), true)
23984
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   688
  # 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
   689
  # 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
   690
  # 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
   691
  # 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
   692
  # of simple find commands for reuse.
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   693
  #
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   694
  # 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
   695
  # 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
   696
  # with no filters.
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   697
  #
47334
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   698
  # Files containing space will get spaces replaced with ? because GNU Make
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   699
  # cannot handle lists of files with space in them. By using ?, make will match
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   700
  # the wildcard to space in many situations so we don't need to replace back
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   701
  # to space on every use. While not a complete solution it does allow some uses
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   702
  # of CacheFind to function with spaces in file names, including for
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   703
  # SetupCopyFiles.
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   704
  #
23984
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   705
  # Needs to be called with $(eval )
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   706
  #
23170
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   707
  # 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
   708
  # functionality active unless explicitly disabled to exercise it more.
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   709
  #
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   710
  # 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
   711
  FIND_CACHE_DIRS :=
23984
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   712
  # Param 1 - Dirs to find in
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   713
  # Param 2 - (optional) specialization. Normally "-a \( ... \)" expression.
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   714
  define FillCacheFind
23984
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   715
    # 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
   716
    # since filter out will then return empty.
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   717
    FIND_CACHE_NEW_DIRS := $$(filter-out $$(addsuffix /%,\
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   718
        - $(FIND_CACHE_DIRS)) $(FIND_CACHE_DIRS), $1)
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   719
    ifneq ($$(FIND_CACHE_NEW_DIRS), )
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   720
      # 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
   721
      FIND_CACHE_DIRS += $$(patsubst %/,%, $$(FIND_CACHE_NEW_DIRS))
47364
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 47354
diff changeset
   722
      FIND_CACHE := $$(sort $$(FIND_CACHE) \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 47354
diff changeset
   723
          $$(shell $(FIND) $$(wildcard $$(FIND_CACHE_NEW_DIRS)) \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 47354
diff changeset
   724
              \( -type f -o -type l \) $2 | $(TR) ' ' '?'))
23170
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   725
    endif
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 18425
diff changeset
   726
  endef
15051
d32ad37472e6 8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents: 14279
diff changeset
   727
23984
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   728
  # 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
   729
  # 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
   730
  # cache is deactivated.
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   731
  #
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   732
  # $1 can be either a directory or a file. If it's a directory, make
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   733
  # sure we have exactly one trailing slash before the wildcard.
23984
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   734
  # 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
   735
  #
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   736
  # Param 1 - Dirs to find in
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   737
  # Param 2 - (optional) specialization. Normally "-a \( ... \)" expression.
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   738
  define CacheFind
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 44027
diff changeset
   739
    $(if $(filter-out $(addsuffix /%,- $(FIND_CACHE_DIRS)) $(FIND_CACHE_DIRS),$1), \
47364
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 47354
diff changeset
   740
      $(if $(wildcard $1), $(shell $(FIND) $(wildcard $1) \( -type f -o -type l \) $2 \
47334
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   741
          | $(TR) ' ' '?')), \
44725
8747b14eb49c 8172312: Update docs target and image for new combined docs
ihse
parents: 44027
diff changeset
   742
      $(filter $(addsuffix /%,$(patsubst %/,%,$1)) $1,$(FIND_CACHE)))
23984
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   743
  endef
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   744
23170
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   745
else
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   746
  # If CacheFind is disabled, just run the find command.
23984
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   747
  # Param 1 - Dirs to find in
e3e90595a176 8041267: Add filtering capability to CacheFind
mduigou
parents: 23170
diff changeset
   748
  # Param 2 - (optional) specialization. Normally "-a \( ... \)" expression.
23170
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   749
  define CacheFind
47364
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 47354
diff changeset
   750
    $(if $(wildcard $1, \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 47354
diff changeset
   751
      $(shell $(FIND) $(wildcard $1) \( -type f -o -type l \) $2 | $(TR) ' ' '?') \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 47354
diff changeset
   752
    )
23170
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   753
  endef
51e606ecede5 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 23169
diff changeset
   754
endif
15051
d32ad37472e6 8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents: 14279
diff changeset
   755
d32ad37472e6 8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents: 14279
diff changeset
   756
################################################################################
d32ad37472e6 8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents: 14279
diff changeset
   757
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   758
define AddFileToCopy
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   759
  # Helper macro for SetupCopyFiles
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   760
  # 1 : Source file
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   761
  # 2 : Dest file
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   762
  # 3 : Variable to add targets to
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   763
  # 4 : Macro to call for copy operation
42983
7bf4468cdbc4 8172037: Change log message of SetupCopyFiles
erikj
parents: 42530
diff changeset
   764
  # 5 : Action text to log
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   765
  $2: $1
47334
09d386ddaa42 8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents: 47314
diff changeset
   766
	$$(call LogInfo, $(strip $5) $$(patsubst $(OUTPUTDIR)/%,%,$$(call DecodeSpace, $$@)))
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   767
	$$($$(strip $4))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   768
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   769
  $3 += $2
47435
80fd2dab3805 8187974: Merge Java Mission Control 6.1 3rdpartyreame with the JDK 18.3 3rdpartyreadme
erikj
parents: 47364
diff changeset
   770
  $3_SOURCES += $1
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   771
endef
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   772
32811
df82db312e58 8135060: Stop building Xcode projects in install build
erikj
parents: 32553
diff changeset
   773
# Returns the value of the first argument
df82db312e58 8135060: Stop building Xcode projects in install build
erikj
parents: 32553
diff changeset
   774
identity = \
df82db312e58 8135060: Stop building Xcode projects in install build
erikj
parents: 32553
diff changeset
   775
    $(strip $1)
df82db312e58 8135060: Stop building Xcode projects in install build
erikj
parents: 32553
diff changeset
   776
28902
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   777
# Setup make rules for copying files, with an option to do more complex
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   778
# processing instead of copying.
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   779
#
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   780
# Parameter 1 is the name of the rule. This name is used as variable prefix,
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   781
# and the targets generated are listed in a variable by that name.
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   782
#
47435
80fd2dab3805 8187974: Merge Java Mission Control 6.1 3rdpartyreame with the JDK 18.3 3rdpartyreadme
erikj
parents: 47364
diff changeset
   783
# The list of all source files is returned in $1_SOURCES.
80fd2dab3805 8187974: Merge Java Mission Control 6.1 3rdpartyreame with the JDK 18.3 3rdpartyreadme
erikj
parents: 47364
diff changeset
   784
#
28902
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   785
# Remaining parameters are named arguments. These include:
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   786
#   SRC     : Source root dir (defaults to dir of first file)
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   787
#   DEST    : Dest root dir
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   788
#   FILES   : List of files to copy with absolute paths, or path relative to SRC.
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   789
#             Must be in SRC.
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   790
#   FLATTEN : Set to flatten the directory structure in the DEST dir.
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   791
#   MACRO   : Optionally override the default macro used for making the copy.
0c09b47449c8 8069064: Various improvements and fixes in build system
ihse
parents: 28901
diff changeset
   792
#             Default is 'install-file'
32811
df82db312e58 8135060: Stop building Xcode projects in install build
erikj
parents: 32553
diff changeset
   793
#   NAME_MACRO : Optionally supply a macro that rewrites the target file name
df82db312e58 8135060: Stop building Xcode projects in install build
erikj
parents: 32553
diff changeset
   794
#                based on the source file name
42983
7bf4468cdbc4 8172037: Change log message of SetupCopyFiles
erikj
parents: 42530
diff changeset
   795
#   LOG_ACTION : Optionally specify a different action text for log messages
29312
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   796
SetupCopyFiles = $(NamedParamsMacroTemplate)
f3f859137ce6 8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents: 29304
diff changeset
   797
define SetupCopyFilesBody
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   798
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   799
  ifeq ($$($1_MACRO), )
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   800
    $1_MACRO := install-file
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   801
  endif
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   802
28901
5acc0ec03d06 8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents: 27595
diff changeset
   803
  # Default SRC to the dir of the first file.
5acc0ec03d06 8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents: 27595
diff changeset
   804
  ifeq ($$($1_SRC), )
5acc0ec03d06 8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents: 27595
diff changeset
   805
    $1_SRC := $$(dir $$(firstword $$($1_FILES)))
5acc0ec03d06 8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents: 27595
diff changeset
   806
  endif
5acc0ec03d06 8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents: 27595
diff changeset
   807
32811
df82db312e58 8135060: Stop building Xcode projects in install build
erikj
parents: 32553
diff changeset
   808
  ifeq ($$($1_NAME_MACRO), )
df82db312e58 8135060: Stop building Xcode projects in install build
erikj
parents: 32553
diff changeset
   809
    $1_NAME_MACRO := identity
df82db312e58 8135060: Stop building Xcode projects in install build
erikj
parents: 32553
diff changeset
   810
  endif
df82db312e58 8135060: Stop building Xcode projects in install build
erikj
parents: 32553
diff changeset
   811
42983
7bf4468cdbc4 8172037: Change log message of SetupCopyFiles
erikj
parents: 42530
diff changeset
   812
  ifeq ($$($1_LOG_ACTION), )
7bf4468cdbc4 8172037: Change log message of SetupCopyFiles
erikj
parents: 42530
diff changeset
   813
    $1_LOG_ACTION := Copying
7bf4468cdbc4 8172037: Change log message of SetupCopyFiles
erikj
parents: 42530
diff changeset
   814
  endif
7bf4468cdbc4 8172037: Change log message of SetupCopyFiles
erikj
parents: 42530
diff changeset
   815
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   816
  # Remove any trailing slash from SRC and DEST
28901
5acc0ec03d06 8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents: 27595
diff changeset
   817
  $1_SRC := $$(patsubst %/,%,$$($1_SRC))
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   818
  $1_DEST := $$(patsubst %/,%,$$($1_DEST))
28901
5acc0ec03d06 8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents: 27595
diff changeset
   819
47354
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   820
  # Need to wrap arguments in DoubleDollar because of the eval nested inside an
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   821
  # eval macro body.
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   822
  $$(foreach f, $$(patsubst $$($1_SRC)/%,%,$$($1_FILES)), \
47354
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   823
    $$(eval $$(call AddFileToCopy, \
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   824
        $$(call DoubleDollar, $$($1_SRC)/$$f), \
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   825
        $$(call DoubleDollar, \
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   826
            $$($1_DEST)/$$(call $$(strip $$($1_NAME_MACRO)),$$(if $$($1_FLATTEN),$$(notdir $$f),$$f)) \
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   827
        ), \
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   828
        $1, \
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   829
        $$($1_MACRO), \
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   830
        $$($1_LOG_ACTION) \
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   831
    )) \
e8bda13da40b 8189434: SetupCopyFiles does not handle files with $ in them
erikj
parents: 47348
diff changeset
   832
  )
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   833
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   834
endef
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   835
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
   836
################################################################################
44027
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   837
# Parse a multiple-keyword variable, like FOO="KEYWORD1=val1;KEYWORD2=val2;..."
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   838
# These will be converted into a series of variables like FOO_KEYWORD1=val1,
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   839
# FOO_KEYWORD2=val2, etc. Unknown keywords will cause an error.
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   840
#
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   841
# Parameter 1 is the name of the rule, and is also the name of the variable.
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   842
#
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   843
# Remaining parameters are named arguments. These include:
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   844
#   KEYWORDS          A list of valid keywords
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   845
#   STRING_KEYWORDS   A list of valid keywords, processed as string. This means
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   846
#       that '%20' will be replaced by ' ' to allow for multi-word strings.
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   847
#
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   848
ParseKeywordVariable = $(NamedParamsMacroTemplate)
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   849
define ParseKeywordVariableBody
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   850
  ifneq ($$($1), )
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   851
    # To preserve spaces, substitute them with a hopefully unique pattern
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   852
    # before splitting and then re-substitute spaces back.
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   853
    $1_MANGLED := $$(subst $$(SPACE),||||,$$($1))
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   854
    $$(foreach mangled_part, $$(subst ;, , $$($1_MANGLED)), \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   855
      $$(eval mangled_part_eval := $$(call DoubleDollar, $$(mangled_part))) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   856
      $$(eval part := $$$$(subst ||||,$$$$(SPACE),$$$$(mangled_part_eval))) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   857
      $$(eval $1_NO_MATCH := true) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   858
      $$(foreach keyword, $$($1_KEYWORDS), \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   859
        $$(eval keyword_eval := $$(call DoubleDollar, $$(keyword))) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   860
        $$(if $$(filter $$(keyword)=%, $$(part)), \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   861
          $$(eval $(strip $1)_$$$$(keyword_eval) := $$$$(strip $$$$(patsubst $$$$(keyword_eval)=%, %, $$$$(part)))) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   862
          $$(eval $1_NO_MATCH := ) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   863
        ) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   864
      ) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   865
      $$(foreach keyword, $$($1_STRING_KEYWORDS), \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   866
        $$(eval keyword_eval := $$(call DoubleDollar, $$(keyword))) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   867
        $$(if $$(filter $$(keyword)=%, $$(part)), \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   868
          $$(eval $(strip $1)_$$$$(keyword_eval) := $$$$(strip $$$$(subst %20, , $$$$(patsubst $$$$(keyword_eval)=%, %, $$$$(part))))) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   869
          $$(eval $1_NO_MATCH := ) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   870
        ) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   871
      ) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   872
      $$(if $$($1_NO_MATCH), \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   873
        $$(if $$(filter $$(part), $$($1_KEYWORDS) $$($1_STRING_KEYWORDS)), \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   874
          $$(info Keyword $$(part) for $1 needs to be assigned a value.) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   875
        , \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   876
          $$(info $$(part) is not a valid keyword for $1.) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   877
          $$(info Valid keywords: $$($1_KEYWORDS) $$($1_STRING_KEYWORDS).) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   878
        ) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   879
        $$(error Cannot continue) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   880
      ) \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   881
    )
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   882
  endif
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   883
endef
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   884
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   885
################################################################################
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   886
# ShellQuote
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   887
#
29156
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 28906
diff changeset
   888
# Quotes a string with single quotes and replaces single quotes with '\'' so
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   889
# that the contents survives being given to the shell.
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   890
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   891
ShellQuote = \
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   892
    $(SQUOTE)$(subst $(SQUOTE),$(SQUOTE)\$(SQUOTE)$(SQUOTE),$(strip $1))$(SQUOTE)
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   893
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   894
################################################################################
44027
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   895
# FixPath
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   896
#
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   897
# On Windows, converts a path from cygwin/unix style (e.g. /bin/foo) into
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   898
# "mixed mode" (e.g. c:/cygwin/bin/foo). On other platforms, return the path
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   899
# unchanged.
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   900
# This is normally not needed since we use the FIXPATH prefix for command lines,
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   901
# but might be needed in certain circumstances.
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   902
ifeq ($(OPENJDK_TARGET_OS), windows)
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   903
  FixPath = \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   904
      $(shell $(CYGPATH) -m $1)
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   905
else
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   906
  FixPath = \
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   907
      $1
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   908
endif
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   909
3a3050924db2 8176084: Developer-friendly run-test facility
ihse
parents: 43173
diff changeset
   910
################################################################################
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   911
# Write to and read from file
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   912
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   913
# Param 1 - File to read
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   914
ReadFile = \
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   915
    $(shell $(CAT) $1)
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   916
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   917
# Param 1 - Text to write
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   918
# Param 2 - File to write to
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   919
ifeq ($(HAS_FILE_FUNCTION), true)
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   920
  WriteFile = \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   921
      $(file >$2,$(strip $1))
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   922
else
34596
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   923
  # Use printf to get consistent behavior on all platforms.
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   924
  WriteFile = \
e8328ce5b64e 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 33394
diff changeset
   925
      $(shell $(PRINTF) "%s" $(call ShellQuote, $1) > $2)
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   926
endif
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   927
48078
94a38ebbc9bb 8193061: Add run-test-prebuilt functionality
ihse
parents: 47751
diff changeset
   928
# Param 1 - Text to write
94a38ebbc9bb 8193061: Add run-test-prebuilt functionality
ihse
parents: 47751
diff changeset
   929
# Param 2 - File to write to
94a38ebbc9bb 8193061: Add run-test-prebuilt functionality
ihse
parents: 47751
diff changeset
   930
ifeq ($(HAS_FILE_FUNCTION), true)
94a38ebbc9bb 8193061: Add run-test-prebuilt functionality
ihse
parents: 47751
diff changeset
   931
  AppendFile = \
94a38ebbc9bb 8193061: Add run-test-prebuilt functionality
ihse
parents: 47751
diff changeset
   932
      $(file >>$2,$(strip $1))
94a38ebbc9bb 8193061: Add run-test-prebuilt functionality
ihse
parents: 47751
diff changeset
   933
else
94a38ebbc9bb 8193061: Add run-test-prebuilt functionality
ihse
parents: 47751
diff changeset
   934
  # Use printf to get consistent behavior on all platforms.
94a38ebbc9bb 8193061: Add run-test-prebuilt functionality
ihse
parents: 47751
diff changeset
   935
  AppendFile = \
94a38ebbc9bb 8193061: Add run-test-prebuilt functionality
ihse
parents: 47751
diff changeset
   936
      $(shell $(PRINTF) "%s" $(call ShellQuote, $1) >> $2)
94a38ebbc9bb 8193061: Add run-test-prebuilt functionality
ihse
parents: 47751
diff changeset
   937
endif
94a38ebbc9bb 8193061: Add run-test-prebuilt functionality
ihse
parents: 47751
diff changeset
   938
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   939
################################################################################
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   940
# DependOnVariable
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   941
#
29156
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 28906
diff changeset
   942
# This macro takes a variable name and puts the value in a file only if the
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 28906
diff changeset
   943
# value has changed since last. The name of the file is returned. This can be
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   944
# used to create rule dependencies on make variable values. The following
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   945
# example would get rebuilt if the value of SOME_VAR was changed:
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   946
#
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   947
# path/to/some-file: $(call DependOnVariable, SOME_VAR)
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   948
#         echo $(SOME_VAR) > $@
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   949
#
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   950
# Note that leading and trailing white space in the value is ignored.
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   951
#
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   952
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   953
# Defines the sub directory structure to store variable value file in
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   954
DependOnVariableDirName = \
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 36169
diff changeset
   955
    $(strip $(addsuffix $(if $(MODULE),/$(MODULE)), \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 45369
diff changeset
   956
        $(subst $(TOPDIR)/,, $(if $(filter /%, $(firstword $(MAKEFILE_LIST))), \
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   957
          $(firstword $(MAKEFILE_LIST)), \
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 36169
diff changeset
   958
          $(CURDIR)/$(firstword $(MAKEFILE_LIST))))))
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   959
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   960
# Defines the name of the file to store variable value in. Generates a name
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   961
# unless parameter 2 is given.
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   962
# Param 1 - Name of variable
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   963
# Param 2 - (optional) name of file to store value in
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   964
DependOnVariableFileName = \
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   965
    $(strip $(if $(strip $2), $2, \
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   966
      $(MAKESUPPORT_OUTPUTDIR)/vardeps/$(DependOnVariableDirName)/$(strip $1).vardeps))
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   967
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   968
# Does the actual work with parameters stripped.
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   969
# If the file exists AND the contents is the same as the variable, do nothing
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   970
# else print a new file.
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   971
# Always returns the name of the file where the value was printed.
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   972
# Param 1 - Name of variable
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   973
# Param 2 - (optional) name of file to store value in
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   974
DependOnVariableHelper = \
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   975
    $(strip \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   976
        $(eval -include $(call DependOnVariableFileName, $1, $2)) \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   977
        $(if $(call equals, $(strip $($1)), $(strip $($1_old))),,\
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   978
          $(call MakeDir, $(dir $(call DependOnVariableFileName, $1, $2))) \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   979
          $(if $(findstring $(LOG_LEVEL), trace), \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   980
              $(info NewVariable $1: >$(strip $($1))<) \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   981
              $(info OldVariable $1: >$(strip $($1_old))<)) \
42134
bbcdb49521b1 8169860: Clean up and unify the refactored Javadoc generation
ihse
parents: 41875
diff changeset
   982
          $(call WriteFile, $1_old:=$(call DoubleDollar,$(call EscapeHash,$($1))), \
33054
bcb9f5ea5761 8140484: Vardeps broken when variable value contains '$'
erikj
parents: 32812
diff changeset
   983
              $(call DependOnVariableFileName, $1, $2))) \
32807
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   984
        $(call DependOnVariableFileName, $1, $2) \
20386e6d858f 8136385: Various build speed improvements for windows
erikj
parents: 32553
diff changeset
   985
    )
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   986
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   987
# Main macro
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   988
# Param 1 - Name of variable
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   989
# Param 2 - (optional) name of file to store value in
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   990
DependOnVariable = \
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   991
    $(call DependOnVariableHelper,$(strip $1),$(strip $2))
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
   992
35444
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   993
# LogCmdlines is only intended to be used by ExecuteWithLog
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   994
ifeq ($(LOG_CMDLINES), true)
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   995
  LogCmdlines = $(info $(strip $1))
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   996
else
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   997
  LogCmdlines =
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   998
endif
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
   999
28600
09dd1740f176 8069261: Create make dependencies on make variable values
erikj
parents: 27595
diff changeset
  1000
################################################################################
35444
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
  1001
# ExecuteWithLog will run a command and log the output appropriately. This is
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
  1002
# meant to be used by commands that do "real" work, like a compilation.
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
  1003
# The output is stored in a specified log file, which is displayed at the end
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
  1004
# of the build in case of failure. The  command line itself is stored in a file,
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
  1005
# and also logged to stdout if the LOG=cmdlines option has been given.
32344
0b288e0efcfa 8062618: Create a build failure summary at end of build log
ihse
parents: 31312
diff changeset
  1006
#
39607
ace2c0283dce 8158629: bash >(...) construct still causes race conditions
erikj
parents: 39110
diff changeset
  1007
# NOTE: If the command redirects stdout, the caller needs to wrap it in a
ace2c0283dce 8158629: bash >(...) construct still causes race conditions
erikj
parents: 39110
diff changeset
  1008
# subshell (by adding parentheses around it), otherwise the redirect to the
ace2c0283dce 8158629: bash >(...) construct still causes race conditions
erikj
parents: 39110
diff changeset
  1009
# subshell tee process will create a race condition where the target file may
ace2c0283dce 8158629: bash >(...) construct still causes race conditions
erikj
parents: 39110
diff changeset
  1010
# not be fully written when the make recipe is done.
ace2c0283dce 8158629: bash >(...) construct still causes race conditions
erikj
parents: 39110
diff changeset
  1011
#
35444
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
  1012
# Param 1 - The path to base the name of the log file / command line file on
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
  1013
# Param 2 - The command to run
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
  1014
ExecuteWithLog = \
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
  1015
  $(call LogCmdlines, Exececuting: [$(strip $2)]) \
48912
01237b276b8b 8198318: Make build comparisons clean again
ihse
parents: 48078
diff changeset
  1016
  $(call MakeDir, $(dir $(strip $1))) \
35444
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
  1017
  $(call WriteFile, $2, $(strip $1).cmdline) \
39607
ace2c0283dce 8158629: bash >(...) construct still causes race conditions
erikj
parents: 39110
diff changeset
  1018
  ( $(strip $2) > >($(TEE) $(strip $1).log) 2> >($(TEE) $(strip $1).log >&2) || \
35444
4d323e794486 8148655: LOG=cmdlines and other build-infra fixes
ihse
parents: 35370
diff changeset
  1019
      ( exitcode=$(DOLLAR)? && \
47253
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47217
diff changeset
  1020
      $(CP) $(strip $1).log $(MAKESUPPORT_OUTPUTDIR)/failure-logs/$(subst /,_,$(patsubst $(OUTPUTDIR)/%,%,$(strip $1))).log && \
92fd0e04e0e1 8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents: 47217
diff changeset
  1021
      $(CP) $(strip $1).cmdline $(MAKESUPPORT_OUTPUTDIR)/failure-logs/$(subst /,_,$(patsubst $(OUTPUTDIR)/%,%,$(strip $1))).cmdline && \
39607
ace2c0283dce 8158629: bash >(...) construct still causes race conditions
erikj
parents: 39110
diff changeset
  1022
      exit $(DOLLAR)exitcode ) )
32344
0b288e0efcfa 8062618: Create a build failure summary at end of build log
ihse
parents: 31312
diff changeset
  1023
0b288e0efcfa 8062618: Create a build failure summary at end of build log
ihse
parents: 31312
diff changeset
  1024
################################################################################
31310
481585782338 8081814: Modularize the deploy build
erikj
parents: 30095
diff changeset
  1025
# Find lib dir for module
481585782338 8081814: Modularize the deploy build
erikj
parents: 30095
diff changeset
  1026
# Param 1 - module name
42528
125bc97e7569 8066474: Remove the lib/ directory from Linux and Solaris images
erikj
parents: 41875
diff changeset
  1027
FindLibDirForModule = \
125bc97e7569 8066474: Remove the lib/ directory from Linux and Solaris images
erikj
parents: 41875
diff changeset
  1028
    $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)
31310
481585782338 8081814: Modularize the deploy build
erikj
parents: 30095
diff changeset
  1029
481585782338 8081814: Modularize the deploy build
erikj
parents: 30095
diff changeset
  1030
################################################################################
49244
995a5556edfa 8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents: 49205
diff changeset
  1031
# Find executable dir for module
995a5556edfa 8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents: 49205
diff changeset
  1032
# Param 1 - module name
995a5556edfa 8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents: 49205
diff changeset
  1033
FindExecutableDirForModule = \
995a5556edfa 8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents: 49205
diff changeset
  1034
    $(SUPPORT_OUTPUTDIR)/modules_cmds/$(strip $1)
995a5556edfa 8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents: 49205
diff changeset
  1035
995a5556edfa 8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents: 49205
diff changeset
  1036
################################################################################
40241
59abac94e4f2 8136930: Simplify use of module-system options by custom launchers
mchung
parents: 39607
diff changeset
  1037
# Return a string suitable for use after a -classpath or --module-path option. It
37030
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36506
diff changeset
  1038
# will be correct and safe to use on all platforms. Arguments are given as space
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36506
diff changeset
  1039
# separate classpath entries. Safe for multiple nested calls.
32460
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
  1040
# param 1 : A space separated list of classpath entries
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
  1041
# The surrounding strip is needed to keep additional whitespace out
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
  1042
PathList = \
37030
e047c2f3f510 8153969: Clean up module src dir logic
erikj
parents: 36506
diff changeset
  1043
  "$(subst $(SPACE),$(PATH_SEP),$(strip $(subst $(DQUOTE),,$1)))"
32460
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
  1044
9e9bffb3029a 8065912: Better handling of classpath in build-infra
ihse
parents: 32344
diff changeset
  1045
################################################################################
37402
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
  1046
# Check if a specified hotspot variant is being built, or at least one of a
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
  1047
# list of variants. Will return 'true' or 'false'.
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
  1048
# $1 - the variant to test for
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
  1049
check-jvm-variant = \
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
  1050
  $(strip \
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
  1051
    $(if $(filter-out $(VALID_JVM_VARIANTS), $1), \
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
  1052
      $(error Internal error: Invalid variant tested: $1)) \
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
  1053
    $(if $(filter $1, $(JVM_VARIANTS)), true, false))
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
  1054
62b5f067032e 8152666: The new Hotspot Build System
erikj
parents: 36506
diff changeset
  1055
################################################################################
37770
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37410
diff changeset
  1056
# Converts a space separated list to a comma separated list.
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37410
diff changeset
  1057
#
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37410
diff changeset
  1058
# Replacing double-comma with a single comma is to workaround the issue with
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37410
diff changeset
  1059
# some version of make on windows that doesn't substitute spaces with one comma
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37410
diff changeset
  1060
# properly.
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37410
diff changeset
  1061
CommaList = \
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37410
diff changeset
  1062
  $(strip \
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37410
diff changeset
  1063
      $(subst $(COMMA)$(COMMA),$(COMMA),$(subst $(SPACE),$(COMMA),$(strip $1))) \
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37410
diff changeset
  1064
  )
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37410
diff changeset
  1065
9f040cf69078 8150044: Generate classlists at build-time
redestad
parents: 37410
diff changeset
  1066
################################################################################
45323
52500c1d7f1f 8175824: Adapt javadoc generation to different requirements for JDK and JavaSE
ihse
parents: 44725
diff changeset
  1067
# Converts a space separated list to a colon separated list.
52500c1d7f1f 8175824: Adapt javadoc generation to different requirements for JDK and JavaSE
ihse
parents: 44725
diff changeset
  1068
#
52500c1d7f1f 8175824: Adapt javadoc generation to different requirements for JDK and JavaSE
ihse
parents: 44725
diff changeset
  1069
# Replacing double-colon with a single colon is to workaround the issue with
52500c1d7f1f 8175824: Adapt javadoc generation to different requirements for JDK and JavaSE
ihse
parents: 44725
diff changeset
  1070
# some version of make on windows that doesn't substitute spaces with one colon
52500c1d7f1f 8175824: Adapt javadoc generation to different requirements for JDK and JavaSE
ihse
parents: 44725
diff changeset
  1071
# properly.
52500c1d7f1f 8175824: Adapt javadoc generation to different requirements for JDK and JavaSE
ihse
parents: 44725
diff changeset
  1072
ColonList = \
52500c1d7f1f 8175824: Adapt javadoc generation to different requirements for JDK and JavaSE
ihse
parents: 44725
diff changeset
  1073
  $(strip \
52500c1d7f1f 8175824: Adapt javadoc generation to different requirements for JDK and JavaSE
ihse
parents: 44725
diff changeset
  1074
      $(subst ::,:,$(subst $(SPACE),:,$(strip $1))) \
52500c1d7f1f 8175824: Adapt javadoc generation to different requirements for JDK and JavaSE
ihse
parents: 44725
diff changeset
  1075
  )
52500c1d7f1f 8175824: Adapt javadoc generation to different requirements for JDK and JavaSE
ihse
parents: 44725
diff changeset
  1076
52500c1d7f1f 8175824: Adapt javadoc generation to different requirements for JDK and JavaSE
ihse
parents: 44725
diff changeset
  1077
################################################################################
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
  1078
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
  1079
# Hook to include the corresponding custom file, if present.
47314
743814386712 8188814: Simplify IncludeCustomExtension
ihse
parents: 47253
diff changeset
  1080
$(eval $(call IncludeCustomExtension, common/MakeBase.gmk))
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 23984
diff changeset
  1081
12258
6ec26f6cc53e 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
  1082
endif # _MAKEBASE_GMK