author | attila |
Tue, 05 May 2015 18:35:29 +0200 | |
changeset 30390 | 357f9a3f9394 |
parent 29442 | e4b178a258da |
child 30095 | 0034766ccb09 |
permissions | -rw-r--r-- |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
2 |
# Copyright (c) 2011, 2014, 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 |
|
13697 | 26 |
# This makefile is much simpler now that it can use the smart javac wrapper |
27 |
# for dependency tracking between java packages and incremental compiles. |
|
28 |
# It could be even more simple if we added support for incremental jar updates |
|
29 |
# directly from the smart javac wrapper. |
|
30 |
||
31 |
# Cleaning/copying properties here is not a good solution. The properties |
|
32 |
# should be cleaned/copied by a annotation processor in sjavac. |
|
33 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
34 |
# When you read this source. Remember that $(sort ...) has the side effect |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
35 |
# of removing duplicates. It is actually this side effect that is |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
36 |
# desired whenever sort is used below! |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
37 |
|
25854 | 38 |
ifndef _JAVA_COMPILATION_GMK |
39 |
_JAVA_COMPILATION_GMK := 1 |
|
40 |
||
20363 | 41 |
ifeq (,$(_MAKEBASE_GMK)) |
42 |
$(error You must include MakeBase.gmk prior to including JavaCompilation.gmk) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
43 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
44 |
|
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
45 |
# Java compilation needs SetupZipArchive if we're generating a source zip. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
46 |
include ZipArchive.gmk |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
47 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
48 |
FALSE_FIND_PATTERN:=-name FILE_NAME_THAT_DOESNT_EXIST |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
49 |
|
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
50 |
# Setup make rules for defining a Java compiler, which is needed to compile |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
51 |
# Java code. This rule generates no output. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
52 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
53 |
# Parameter 1 is the name of the compiler definition. This name needs to be |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
54 |
# passed to SetupJavaCompilation. This name is used as variable prefix. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
55 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
56 |
# Remaining parameters are named arguments. These include: |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
57 |
# JVM:=The jvm used to run the javac/javah command |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
58 |
# JAVAC:=The javac jar and bootstrap classpath changes, or just bin/javac if JVM is left out |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
59 |
# FLAGS:=Flags to be supplied to javac |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
60 |
# SERVER_DIR:=Use a javac server (-XDserver) and store the server related files here |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
61 |
# SERVER_JVM:=Use this JVM for the server. Defaults to the JVM above. |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
62 |
SetupJavaCompiler = $(NamedParamsMacroTemplate) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
63 |
define SetupJavaCompilerBody |
20363 | 64 |
# The port file contains the tcp/ip on which the server listens |
65 |
# and the cookie necessary to talk to the server. |
|
66 |
$1_SJAVAC_PORTFILE:=$$($1_SERVER_DIR)/server.port |
|
67 |
# You can use a different JVM to run the background javac server. |
|
68 |
ifeq ($$($1_SERVER_JVM),) |
|
69 |
# It defaults to the same JVM that is used to start the javac command. |
|
70 |
$1_SERVER_JVM:=$$($1_JVM) |
|
71 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
72 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
73 |
|
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
74 |
# Setup make rules for creating a jar archive. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
75 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
76 |
# Parameter 1 is the name of the rule. This name is used as variable prefix, |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
77 |
# and the targets generated are listed in a variable by that name. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
78 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
79 |
# Remaining parameters are named arguments. These include: |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
80 |
# DEPENDENCIES:=List of dependencies for the jar target. If left empty, |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
81 |
# dependencies are calculated automatically from the source files found. |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
82 |
# For this to work, the source files must exist when the makefile is |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
83 |
# parsed. |
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
84 |
# SRCS:=List of directories in where to find files to add to archive |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
85 |
# SUFFIXES:=File suffixes to include in jar |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
86 |
# INCLUDES:=List of directories/packages in SRCS that should be included |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
87 |
# EXCLUDES:=List of directories/packages in SRCS that should be excluded |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
88 |
# EXCLUDE_FILES:=List of files in SRCS that should be excluded |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
89 |
# EXTRA_FILES:=List of files in SRCS that should be included regardless of suffix match. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
90 |
# JAR:=Jar file to create |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
91 |
# MANIFEST:=Optional manifest file template. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
92 |
# JARMAIN:=Optional main class to add to manifest |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
93 |
# JARINDEX:=true means generate the index in the jar file. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
94 |
# SKIP_METAINF:=Set to prevent contents of an META-INF directory to be automatically |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
95 |
# added to the archive. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
96 |
# EXTRA_MANIFEST_ATTR:=Extra attribute to add to manifest. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
97 |
# CHECK_COMPRESS_JAR Check the COMPRESS_JAR variable |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
98 |
SetupArchive = $(NamedParamsMacroTemplate) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
99 |
define SetupArchiveBody |
14111 | 100 |
|
20363 | 101 |
$1_JARMAIN:=$(strip $$($1_JARMAIN)) |
102 |
$1_JARNAME:=$$(notdir $$($1_JAR)) |
|
103 |
$1_MANIFEST_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_manifest |
|
104 |
$1_DELETESS_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_deletess |
|
105 |
$1_DELETES_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_deletes |
|
106 |
$1_BIN:=$$(dir $$($1_JAR)) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
107 |
|
20363 | 108 |
ifeq (,$$($1_SUFFIXES)) |
109 |
# No suffix was set, default to classes. |
|
110 |
$1_SUFFIXES:=.class |
|
111 |
endif |
|
112 |
# Convert suffixes to a find expression |
|
113 |
$1_FIND_PATTERNS:=$(FALSE_FIND_PATTERN) $$(patsubst %,$(SPACE)-o$(SPACE)-name$(SPACE)$(DQUOTE)*%$(DQUOTE),$$($1_SUFFIXES)) |
|
114 |
# On windows, a lot of includes/excludes risk making the command line too long, so |
|
115 |
# writing the grep patterns to files. |
|
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
116 |
# Grep returns 1 if nothing is matched. Do not fail the build for this. |
20363 | 117 |
ifneq (,$$($1_INCLUDES)) |
25854 | 118 |
$1_GREP_INCLUDE_PATTERNS:=$$(call EscapeDollar, \ |
119 |
$$(foreach src,$$($1_SRCS), $$(addprefix $$(src)/,$$($1_INCLUDES)))) |
|
20363 | 120 |
# If there are a lot of include patterns, output to file to shorten command lines |
121 |
ifeq ($$(word 20,$$($1_GREP_INCLUDE_PATTERNS)),) |
|
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
122 |
$1_GREP_INCLUDES:=| ( $(GREP) $$(patsubst %,$(SPACE)-e$(SPACE)$(DQUOTE)%$(DQUOTE),$$($1_GREP_INCLUDE_PATTERNS)) \ |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
123 |
|| test "$$$$?" = "1" ) |
20363 | 124 |
else |
20364 | 125 |
$1_GREP_INCLUDE_OUTPUT:=$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_include $$(NEWLINE) \ |
126 |
$$(call ListPathsSafely,$1_GREP_INCLUDE_PATTERNS,\n, \ |
|
127 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_include) |
|
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
128 |
$1_GREP_INCLUDES:=| ( $(GREP) -f $$($1_BIN)/_the.$$($1_JARNAME)_include \ |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
129 |
|| test "$$$$?" = "1" ) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
130 |
endif |
20363 | 131 |
endif |
132 |
ifneq (,$$($1_EXCLUDES)$$($1_EXCLUDE_FILES)) |
|
25854 | 133 |
$1_GREP_EXCLUDE_PATTERNS:=$$(call EscapeDollar, \ |
134 |
$$(foreach src,$$($1_SRCS),$$(addprefix $$(src)/, \ |
|
135 |
$$($1_EXCLUDES) $$($1_EXCLUDE_FILES)))) |
|
20363 | 136 |
# If there are a lot of include patterns, output to file to shorten command lines |
137 |
ifeq ($$(word 20,$$($1_GREP_EXCLUDE_PATTERNS)),) |
|
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
138 |
$1_GREP_EXCLUDES:=| ( $(GREP) -v $$(patsubst %,$(SPACE)-e$(SPACE)$(DQUOTE)%$(DQUOTE),$$($1_GREP_EXCLUDE_PATTERNS)) \ |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
139 |
|| test "$$$$?" = "1" ) |
12801 | 140 |
else |
20364 | 141 |
$1_GREP_EXCLUDE_OUTPUT=$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_exclude $$(NEWLINE) \ |
142 |
$$(call ListPathsSafely,$1_GREP_EXCLUDE_PATTERNS,\n, \ |
|
143 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_exclude) |
|
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
144 |
$1_GREP_EXCLUDES:=| ( $(GREP) -v -f $$($1_BIN)/_the.$$($1_JARNAME)_exclude \ |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
145 |
|| test "$$$$?" = "1" ) |
12801 | 146 |
endif |
20363 | 147 |
endif |
148 |
||
149 |
# Check if this jar needs to have its index generated. |
|
150 |
ifneq (,$$($1_JARINDEX)) |
|
151 |
$1_JARINDEX = (cd $$(dir $$@) && $(JAR) -i $$(notdir $$@)) |
|
152 |
else |
|
153 |
$1_JARINDEX = true |
|
154 |
endif |
|
155 |
# When this macro is run in the same makefile as the java compilation, dependencies are |
|
156 |
# transfered in make variables. When the macro is run in a different makefile than the |
|
157 |
# java compilation, the dependencies need to be found in the filesystem. |
|
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
158 |
ifeq ($$($1_DEPENDENCIES), ) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
159 |
# Add all source roots to the find cache since we are likely going to run find |
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
160 |
# on these more than once. The cache will only be updated if necessary. |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
161 |
$$(eval $$(call FillCacheFind, $$($1_FIND_LIST))) |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
162 |
$1_DEPENDENCIES:=$$(filter $$(addprefix %,$$($1_SUFFIXES)), \ |
20363 | 163 |
$$(call CacheFind,$$($1_SRCS))) |
164 |
ifneq (,$$($1_GREP_INCLUDE_PATTERNS)) |
|
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
165 |
$1_DEPENDENCIES:=$$(filter $$(addsuffix %,$$($1_GREP_INCLUDE_PATTERNS)),$$($1_DEPENDENCIES)) |
12801 | 166 |
endif |
20363 | 167 |
ifneq (,$$($1_GREP_EXCLUDE_PATTERNS)) |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
168 |
$1_DEPENDENCIES:=$$(filter-out $$(addsuffix %,$$($1_GREP_EXCLUDE_PATTERNS)),$$($1_DEPENDENCIES)) |
20363 | 169 |
endif |
25854 | 170 |
# Look for EXTRA_FILES in all SRCS dirs and as absolute paths. |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
171 |
$1_DEPENDENCIES+=$$(wildcard $$(foreach src, $$($1_SRCS), \ |
25854 | 172 |
$$(addprefix $$(src)/, $$($1_EXTRA_FILES))) $$($1_EXTRA_FILES)) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
173 |
ifeq (,$$($1_SKIP_METAINF)) |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
174 |
$1_DEPENDENCIES+=$$(call CacheFind,$$(wildcard $$(addsuffix /META-INF,$$($1_SRCS)))) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
175 |
endif |
20363 | 176 |
endif |
23169
fdc2570ccbf4
8037238: JDK 9 images don't rebuild when access bridge jars rebuild
erikj
parents:
23167
diff
changeset
|
177 |
# The dependency list should never be empty |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
178 |
ifeq ($$(strip $$($1_DEPENDENCIES)), ) |
23169
fdc2570ccbf4
8037238: JDK 9 images don't rebuild when access bridge jars rebuild
erikj
parents:
23167
diff
changeset
|
179 |
$$(warning No dependencies found for $1) |
fdc2570ccbf4
8037238: JDK 9 images don't rebuild when access bridge jars rebuild
erikj
parents:
23167
diff
changeset
|
180 |
endif |
20363 | 181 |
|
182 |
# Utility macros, to make the shell script receipt somewhat easier to decipher. |
|
12801 | 183 |
|
25854 | 184 |
# Capture extra files is the same for both CAPTURE_CONTENTS and SCAPTURE_CONTENTS so |
185 |
# only define it once to avoid duplication. |
|
186 |
# The list of extra files might be long, so need to use ListPathsSafely to print |
|
187 |
# them out to a separte file. Then process the contents of that file to rewrite |
|
188 |
# into -C <dir> <file> lines. |
|
189 |
# The EXTRA_FILES_RESOLVED varible must be set in the macro so that it's evaluated |
|
190 |
# in the recipe when the files are guaranteed to exist. |
|
191 |
$1_CAPTURE_EXTRA_FILES=\ |
|
192 |
$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_contents.extra $$(NEWLINE) \ |
|
193 |
$$(eval $1_EXTRA_FILES_RESOLVED:=$$(call DoubleDollar, $$(call DoubleDollar, \ |
|
194 |
$$(wildcard $$(foreach src, $$($1_SRCS), \ |
|
195 |
$$(addprefix $$(src)/, $$($1_EXTRA_FILES))) $$($1_EXTRA_FILES))))) \ |
|
196 |
$$(if $$($1_EXTRA_FILES_RESOLVED), \ |
|
197 |
$$(call ListPathsSafely,$1_EXTRA_FILES_RESOLVED,\n, \ |
|
198 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_contents.extra) $$(NEWLINE) \ |
|
199 |
$(SED) $$(foreach src,$$($1_SRCS), -e 's|$$(src)/|-C $$(src) |g') \ |
|
200 |
$$($1_BIN)/_the.$$($1_JARNAME)_contents.extra \ |
|
201 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE)) |
|
202 |
||
20363 | 203 |
# The capture contents macro finds all files (matching the patterns, typically |
204 |
# .class and .prp) that are newer than the jar-file, ie the new content to be put into the jar. |
|
22467 | 205 |
# NOTICE: please leave the parentheses space separated otherwise the AIX build will break! |
25854 | 206 |
$1_CAPTURE_CONTENTS=\ |
207 |
$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE) \ |
|
208 |
$$(foreach src,$$($1_SRCS), \ |
|
209 |
$(FIND) $$(src) -type f -a \( $$($1_FIND_PATTERNS) \) -a -newer $$@ $$($1_GREP_INCLUDES) \ |
|
210 |
$$($1_GREP_EXCLUDES) | $(SED) 's|$$(src)/|-C $$(src) |g' \ |
|
211 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE)) \ |
|
212 |
$$($1_CAPTURE_EXTRA_FILES) |
|
213 |
||
20363 | 214 |
# The capture metainf macro finds all files below the META-INF directory that are newer than the jar-file. |
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
215 |
# Find returns non zero if the META-INF dir does not exist, ignore this. |
20363 | 216 |
ifeq (,$$($1_SKIP_METAINF)) |
25854 | 217 |
$1_CAPTURE_METAINF =$$(foreach src,$$($1_SRCS), \ |
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
218 |
( ( $(FIND) $$(src)/META-INF -type f -a -newer $$@ 2> /dev/null || true ) \ |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
219 |
| $(SED) 's|$$(src)/|-C $$(src) |g' >> \ |
25854 | 220 |
$$($1_BIN)/_the.$$($1_JARNAME)_contents ) $$(NEWLINE) ) |
20363 | 221 |
endif |
222 |
# The capture deletes macro finds all deleted files and concatenates them. The resulting file |
|
223 |
# tells us what to remove from the jar-file. |
|
25854 | 224 |
$1_CAPTURE_DELETES=$$(foreach src,$$($1_SRCS),($(FIND) $$(src) -name _the.package.deleted -newer $$@ \ |
225 |
-exec $(SED) 's|$$(src)||g' \{\} >> $$($1_DELETES_FILE) \;) $$(NEWLINE)) |
|
20363 | 226 |
# The update contents macro updates the jar file with the previously capture contents. |
22467 | 227 |
# Use 'wc -w' to see if the contents file is empty. |
25854 | 228 |
$1_UPDATE_CONTENTS=\ |
229 |
if [ "`$(WC) -l $$($1_BIN)/_the.$$($1_JARNAME)_contents | $(AWK) '{ print $$$$1 }'`" -gt "0" ]; then \ |
|
230 |
$(ECHO) " updating" `$(WC) -l $$($1_BIN)/_the.$$($1_JARNAME)_contents | $(AWK) '{ print $$$$1 }'` files && \ |
|
231 |
$(JAR) $$($1_JAR_UPDATE_OPTIONS) $$@ @$$($1_BIN)/_the.$$($1_JARNAME)_contents; \ |
|
232 |
fi $$(NEWLINE) |
|
20363 | 233 |
# The s-variants of the above macros are used when the jar is created from scratch. |
22467 | 234 |
# NOTICE: please leave the parentheses space separated otherwise the AIX build will break! |
25854 | 235 |
$1_SCAPTURE_CONTENTS=\ |
236 |
$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE) \ |
|
237 |
$$(foreach src,$$($1_SRCS), \ |
|
238 |
$(FIND) $$(src) -type f -a \( $$($1_FIND_PATTERNS) \) $$($1_GREP_INCLUDES) \ |
|
239 |
$$($1_GREP_EXCLUDES) | $(SED) 's|$$(src)/|-C $$(src) |g' \ |
|
240 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE)) \ |
|
241 |
$$($1_CAPTURE_EXTRA_FILES) |
|
13132 | 242 |
|
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
243 |
# Find returns non zero if the META-INF dir does not exist, ignore this. |
20363 | 244 |
ifeq (,$$($1_SKIP_METAINF)) |
245 |
$1_SCAPTURE_METAINF=$$(foreach src,$$($1_SRCS), \ |
|
28602
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
246 |
( ( $(FIND) $$(src)/META-INF -type f 2> /dev/null || true ) \ |
51c0dcf51b67
8065576: Enable pipefail in the shell used by make to better detect build errors
erikj
parents:
27866
diff
changeset
|
247 |
| $(SED) 's|$$(src)/|-C $$(src) |g' >> \ |
25854 | 248 |
$$($1_BIN)/_the.$$($1_JARNAME)_contents) $$(NEWLINE) ) |
20363 | 249 |
endif |
25854 | 250 |
$1_SUPDATE_CONTENTS=$(JAR) $$($1_JAR_UPDATE_OPTIONS) $$@ @$$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE) |
20363 | 251 |
|
252 |
# Use a slightly shorter name for logging, but with enough path to identify this jar. |
|
253 |
$1_NAME:=$$(subst $$(OUTPUT_ROOT)/,,$$($1_JAR)) |
|
254 |
||
255 |
ifneq (,$$($1_CHECK_COMPRESS_JAR)) |
|
256 |
$1_JAR_CREATE_OPTIONS := c0fm |
|
257 |
$1_JAR_UPDATE_OPTIONS := u0f |
|
258 |
ifeq ($(COMPRESS_JARS), true) |
|
259 |
$1_JAR_CREATE_OPTIONS := cfm |
|
260 |
$1_JAR_UPDATE_OPTIONS := uf |
|
13132 | 261 |
endif |
20363 | 262 |
else |
263 |
$1_JAR_CREATE_OPTIONS := cfm |
|
264 |
$1_JAR_UPDATE_OPTIONS := uf |
|
265 |
endif |
|
13132 | 266 |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
267 |
# Include all variables of significance in the vardeps file |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
268 |
$1_VARDEPS := $(JAR) $$($1_JAR_CREATE_OPTIONS) $$($1_MANIFEST) $(RELEASE) $(COMPANY_NAME) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
269 |
$$($1_JARMAIN) $$($1_EXTRA_MANIFEST_ATTR) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
270 |
$1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, $$(dir $$($1_JAR))_the.$$($1_JARNAME).vardeps) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
271 |
|
20363 | 272 |
# Here is the rule that creates/updates the jar file. |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
273 |
$$($1_JAR) : $$($1_DEPENDENCIES) $$($1_MANIFEST) $$($1_VARDEPS_FILE) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
274 |
$(MKDIR) -p $$($1_BIN) |
15051
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14613
diff
changeset
|
275 |
$$($1_GREP_INCLUDE_OUTPUT) |
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14613
diff
changeset
|
276 |
$$($1_GREP_EXCLUDE_OUTPUT) |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
277 |
# If the vardeps file is part of the newer prereq list, it means that |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
278 |
# either the jar file does not exist, or we need to recreate it from |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
279 |
# from scratch anyway since a simple update will not catch all the |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
280 |
# potential changes. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
281 |
$$(if $$(filter $$($1_VARDEPS_FILE) $$($1_MANIFEST), $$?), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
282 |
$$(if $$($1_MANIFEST), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
283 |
$(SED) -e "s#@@RELEASE@@#$(RELEASE)#" \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
284 |
-e "s#@@COMPANY_NAME@@#$(COMPANY_NAME)#" $$($1_MANIFEST) > $$($1_MANIFEST_FILE) $$(NEWLINE) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
285 |
, \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
286 |
$(RM) $$($1_MANIFEST_FILE) && $(TOUCH) $$($1_MANIFEST_FILE) $$(NEWLINE)) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
287 |
$$(if $$($1_JARMAIN), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
288 |
$(ECHO) "Main-Class: $$(strip $$($1_JARMAIN))" >> $$($1_MANIFEST_FILE) $$(NEWLINE)) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
289 |
$$(if $$($1_EXTRA_MANIFEST_ATTR), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
290 |
$(PRINTF) "$$($1_EXTRA_MANIFEST_ATTR)\n" >> $$($1_MANIFEST_FILE) $$(NEWLINE)) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
291 |
$(ECHO) Creating $$($1_NAME) $$(NEWLINE) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
292 |
$(JAR) $$($1_JAR_CREATE_OPTIONS) $$@ $$($1_MANIFEST_FILE) $$(NEWLINE) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
293 |
$$($1_SCAPTURE_CONTENTS) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
294 |
$$($1_SCAPTURE_METAINF) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
295 |
$$($1_SUPDATE_CONTENTS) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
296 |
$$($1_JARINDEX) && true \ |
20363 | 297 |
, \ |
298 |
$(ECHO) Modifying $$($1_NAME) $$(NEWLINE) \ |
|
299 |
$$($1_CAPTURE_CONTENTS) \ |
|
300 |
$$($1_CAPTURE_METAINF) \ |
|
301 |
$(RM) $$($1_DELETES_FILE) $$(NEWLINE) \ |
|
302 |
$$($1_CAPTURE_DELETES) \ |
|
303 |
$(CAT) $$($1_DELETES_FILE) > $$($1_DELETESS_FILE) $$(NEWLINE) \ |
|
304 |
if [ -s $$($1_DELETESS_FILE) ]; then \ |
|
305 |
$(ECHO) " deleting" `$(WC) -l $$($1_DELETESS_FILE) | $(AWK) '{ print $$$$1 }'` files && \ |
|
306 |
$(ZIP) -q -d $$@ `$(CAT) $$($1_DELETESS_FILE)` ; \ |
|
307 |
fi $$(NEWLINE) \ |
|
308 |
$$($1_UPDATE_CONTENTS) true $$(NEWLINE) \ |
|
309 |
$$($1_JARINDEX) && true ) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
310 |
|
22480
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
311 |
# Add jar to target list |
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
312 |
$1 += $$($1_JAR) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
313 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
314 |
|
29174
fe55607529c3
8074091: Remove dead code from merge mistake in JavaCompilation.gmk
erikj
parents:
28909
diff
changeset
|
315 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
316 |
define add_file_to_copy |
20363 | 317 |
# param 1 = BUILD_MYPACKAGE |
318 |
# parma 2 = The source file to copy. |
|
319 |
$2_TARGET:=$2 |
|
320 |
# Remove the source prefix. |
|
321 |
$$(foreach i,$$($1_SRC),$$(eval $$(call remove_string,$$i,$2_TARGET))) |
|
25854 | 322 |
# To allow for automatic overrides, do not create a rule for a target file that |
323 |
# already has one |
|
324 |
ifeq ($$(findstring $$($2_TARGET), $$($1_COPY_LIST)), ) |
|
325 |
$1_COPY_LIST += $$($2_TARGET) |
|
326 |
# Now we can setup the depency that will trigger the copying. |
|
327 |
$$($1_BIN)$$($2_TARGET) : $2 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
328 |
$(MKDIR) -p $$(@D) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
329 |
$(CP) $$< $$@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
330 |
$(CHMOD) -f ug+w $$@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
331 |
|
25854 | 332 |
# And do not forget this target |
333 |
$1_ALL_COPY_TARGETS += $$($1_BIN)$$($2_TARGET) |
|
334 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
335 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
336 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
337 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
338 |
# This macro is used only for properties files that are to be |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
339 |
# copied over to the classes directory in cleaned form: |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
340 |
# Previously this was inconsistently done in different repositories. |
13697 | 341 |
# This is the new clean standard. Though it is to be superseded by |
342 |
# a standard annotation processor from with sjavac. |
|
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
343 |
# |
28900
dd0303e8c9ce
8072950: api/xinclude/Harold/harold-97.html\#harold-97, api/xinclude/Harold/harold-67.html\#harold-67 fails on solaris with build port-stage-aarch64
erikj
parents:
28606
diff
changeset
|
344 |
# An empty echo ensures that the input to sed always ends with a newline. |
dd0303e8c9ce
8072950: api/xinclude/Harold/harold-97.html\#harold-97, api/xinclude/Harold/harold-67.html\#harold-67 fails on solaris with build port-stage-aarch64
erikj
parents:
28606
diff
changeset
|
345 |
# Certain implementations (e.g. Solaris) will skip the last line without |
dd0303e8c9ce
8072950: api/xinclude/Harold/harold-97.html\#harold-97, api/xinclude/Harold/harold-67.html\#harold-67 fails on solaris with build port-stage-aarch64
erikj
parents:
28606
diff
changeset
|
346 |
# it. |
dd0303e8c9ce
8072950: api/xinclude/Harold/harold-97.html\#harold-97, api/xinclude/Harold/harold-67.html\#harold-67 fails on solaris with build port-stage-aarch64
erikj
parents:
28606
diff
changeset
|
347 |
# |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
348 |
# The sed expression does this: |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
349 |
# 1. Add a backslash before any :, = or ! that do not have a backslash already. |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
350 |
# 2. Apply the file unicode2x.sed which does a whole bunch of \u00XX to \xXX |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
351 |
# conversions. |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
352 |
# 3. Delete all lines starting with #. |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
353 |
# 4. Delete empty lines. |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
354 |
# 5. Append lines ending with \ with the next line. |
24080
8bfff14321a9
8041265: jdk/bin/rmic -iiop failed on macosx-x86_64 with "Class sun.rmi.rmic.iiop.BatchEnvironmen not found"
erikj
parents:
23983
diff
changeset
|
355 |
# 6. Remove leading and trailing white space. Note that tabs must be explicit |
8bfff14321a9
8041265: jdk/bin/rmic -iiop failed on macosx-x86_64 with "Class sun.rmi.rmic.iiop.BatchEnvironmen not found"
erikj
parents:
23983
diff
changeset
|
356 |
# as sed on macosx does not understand '\t'. |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
357 |
# 7. Replace the first \= with just =. |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
358 |
# 8. Finally it's all sorted to create a stable output. |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
359 |
# |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
360 |
# It is assumed that = is the character used for separating names and values. |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
361 |
define add_file_to_clean |
20363 | 362 |
# param 1 = BUILD_MYPACKAGE |
363 |
# parma 2 = The source file to copy and clean. |
|
364 |
$2_TARGET:=$2 |
|
365 |
# Remove the source prefix. |
|
366 |
$$(foreach i,$$($1_SRC),$$(eval $$(call remove_string,$$i,$2_TARGET))) |
|
367 |
# Now we can setup the depency that will trigger the copying. |
|
368 |
$$($1_BIN)$$($2_TARGET) : $2 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
369 |
$(MKDIR) -p $$(@D) |
28900
dd0303e8c9ce
8072950: api/xinclude/Harold/harold-97.html\#harold-97, api/xinclude/Harold/harold-67.html\#harold-67 fails on solaris with build port-stage-aarch64
erikj
parents:
28606
diff
changeset
|
370 |
export LC_ALL=C ; ( $(CAT) $$< && $(ECHO) "" ) \ |
27591
f8f4973d2329
8065138: Encodings.isRecognizedEnconding sometimes fails to recognize 'UTF8'
erikj
parents:
26671
diff
changeset
|
371 |
| $(SED) -e 's/\([^\\]\):/\1\\:/g' -e 's/\([^\\]\)=/\1\\=/g' \ |
29438
6166fd4a617f
8058470: [jconsole] VM Summary Tab is blank for JDK9's jconsole.
sla
parents:
28909
diff
changeset
|
372 |
-e 's/\([^\\]\)!/\1\\!/g' -e 's/^[ ]*#.*/#/g' \ |
21759 | 373 |
| $(SED) -f "$(SRC_ROOT)/make/common/support/unicode2x.sed" \ |
20363 | 374 |
| $(SED) -e '/^#/d' -e '/^$$$$/d' \ |
375 |
-e :a -e '/\\$$$$/N; s/\\\n//; ta' \ |
|
24080
8bfff14321a9
8041265: jdk/bin/rmic -iiop failed on macosx-x86_64 with "Class sun.rmi.rmic.iiop.BatchEnvironmen not found"
erikj
parents:
23983
diff
changeset
|
376 |
-e 's/^[ ]*//;s/[ ]*$$$$//' \ |
27591
f8f4973d2329
8065138: Encodings.isRecognizedEnconding sometimes fails to recognize 'UTF8'
erikj
parents:
26671
diff
changeset
|
377 |
-e 's/\\=/=/' \ |
f8f4973d2329
8065138: Encodings.isRecognizedEnconding sometimes fails to recognize 'UTF8'
erikj
parents:
26671
diff
changeset
|
378 |
| $(SORT) > $$@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
379 |
$(CHMOD) -f ug+w $$@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
380 |
|
20363 | 381 |
# And do not forget this target |
382 |
$1_ALL_COPY_CLEAN_TARGETS += $$($1_BIN)$$($2_TARGET) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
383 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
384 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
385 |
define remove_string |
20363 | 386 |
$2 := $$(subst $1,,$$($2)) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
387 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
388 |
|
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
389 |
# Setup make rules for compiling Java source code to class files and/or a |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
390 |
# resulting jar file. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
391 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
392 |
# Parameter 1 is the name of the rule. This name is used as variable prefix, |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
393 |
# and the targets generated are listed in a variable by that name. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
394 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
395 |
# Remaining parameters are named arguments. These include: |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
396 |
# SETUP:=must point to a previously setup java compiler, for example: SETUP:=BOOTJAVAC |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
397 |
# JVM:=path to ..bin/java |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
398 |
# ADD_JAVAC_FLAGS:=javac flags to append to the default ones. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
399 |
# SRC:=one or more directories to search for sources |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
400 |
# BIN:=store classes here |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
401 |
# INCLUDES:=myapp.foo means will only compile java files in myapp.foo or any of its sub-packages. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
402 |
# EXCLUDES:=myapp.foo means will do not compile java files in myapp.foo or any of its sub-packages. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
403 |
# COPY:=.prp means copy all prp files to the corresponding package in BIN. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
404 |
# COPY_FILES:=myapp/foo/setting.txt means copy this file over to the package myapp/foo |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
405 |
# CLEAN:=.properties means copy and clean all properties file to the corresponding package in BIN. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
406 |
# CLEAN_FILES:=myapp/foo/setting.txt means clean this file over to the package myapp/foo |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
407 |
# SRCZIP:=Create a src.zip based on the found sources and copied files. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
408 |
# INCLUDE_FILES:="com/sun/SolarisFoobar.java" means only compile this file! |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
409 |
# EXCLUDE_FILES:="com/sun/SolarisFoobar.java" means do not compile this particular file! |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
410 |
# "SolarisFoobar.java" means do not compile SolarisFoobar, wherever it is found. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
411 |
# HEADERS:=path to directory where all generated c-headers are written. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
412 |
# DEPENDS:=Extra dependecy |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
413 |
# DISABLE_SJAVAC:=Explicitly disable the use of sjavac for this compilation unit. |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
414 |
SetupJavaCompilation = $(NamedParamsMacroTemplate) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
415 |
define SetupJavaCompilationBody |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
416 |
|
28902
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
27866
diff
changeset
|
417 |
# Verify arguments |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
27866
diff
changeset
|
418 |
ifeq ($$($1_BIN),) |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
27866
diff
changeset
|
419 |
$$(error Must specify BIN (in $1)) |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
27866
diff
changeset
|
420 |
endif |
0c09b47449c8
8069064: Various improvements and fixes in build system
ihse
parents:
27866
diff
changeset
|
421 |
|
20363 | 422 |
# Extract the info from the java compiler setup. |
423 |
$1_JVM := $$($$($1_SETUP)_JVM) |
|
424 |
$1_JAVAC := $$($$($1_SETUP)_JAVAC) |
|
425 |
$1_FLAGS := $$($$($1_SETUP)_FLAGS) $(JAVAC_FLAGS) $$($1_ADD_JAVAC_FLAGS) |
|
426 |
ifeq ($$($1_JAVAC),) |
|
427 |
$$(error The Java compilation $1 refers to a non-existant java compiler setup $$($1_SETUP)) |
|
428 |
endif |
|
429 |
$1_SJAVAC_PORTFILE := $$($$($1_SETUP)_SJAVAC_PORTFILE) |
|
430 |
$1_SERVER_JVM := $$($$($1_SETUP)_SERVER_JVM) |
|
431 |
||
432 |
# Handle addons and overrides. |
|
433 |
$1_SRC:=$$(call ADD_SRCS,$$($1_SRC)) |
|
434 |
# Make sure the dirs exist. |
|
435 |
$$(foreach d,$$($1_SRC), $$(if $$(wildcard $$d),,$$(error SRC specified to SetupJavaCompilation $1 contains missing directory $$d))) |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
436 |
$$(call MakeDir,$$($1_BIN)) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
437 |
# Add all source roots to the find cache since we are likely going to run find |
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
438 |
# on these more than once. The cache will only be updated if necessary. |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
439 |
$$(eval $$(call FillCacheFind,$$($1_SRC))) |
25854 | 440 |
# Find all files in the source trees. Preserve order of source roots for overrides to |
441 |
# work correctly. CacheFind does not preserve order so need to call it for each root. |
|
442 |
$1_ALL_SRCS += $$(filter-out $(OVR_SRCS),$$(foreach s,$$($1_SRC),$$(call CacheFind,$$(s)))) |
|
20363 | 443 |
# Extract the java files. |
444 |
ifneq ($$($1_EXCLUDE_FILES),) |
|
445 |
$1_EXCLUDE_FILES_PATTERN:=$$(addprefix %,$$($1_EXCLUDE_FILES)) |
|
446 |
endif |
|
447 |
$1_SRCS := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$(filter %.java,$$($1_ALL_SRCS))) |
|
448 |
ifneq ($$($1_INCLUDE_FILES),) |
|
449 |
$1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES))) |
|
450 |
$1_SRCS := $$(filter $$($1_INCLUDE_FILES), $$($1_SRCS)) |
|
451 |
endif |
|
452 |
||
453 |
# Now we have a list of all java files to compile: $$($1_SRCS) |
|
454 |
||
455 |
# Create the corresponding smart javac wrapper command line. |
|
23983
fa89aaeb38c2
8037085: The sjavac exclude option should accept valid directory identifiers
alundblad
parents:
23170
diff
changeset
|
456 |
$1_SJAVAC_ARGS:=$$(addprefix -x ,$$(addsuffix /*,$$($1_EXCLUDES))) \ |
fa89aaeb38c2
8037085: The sjavac exclude option should accept valid directory identifiers
alundblad
parents:
23170
diff
changeset
|
457 |
$$(addprefix -i ,$$(addsuffix /*,$$($1_INCLUDES))) \ |
20363 | 458 |
$$(addprefix -xf *,$$(strip $$($1_EXCLUDE_FILES))) \ |
459 |
$$(addprefix -if *,$$(strip $$($1_INCLUDE_FILES))) \ |
|
460 |
-src "$$(subst $$(SPACE),$$(PATH_SEP),$$(strip $$($1_SRC)))" |
|
13697 | 461 |
|
20363 | 462 |
# Prepend the source/bin path to the filter expressions. |
463 |
ifneq ($$($1_INCLUDES),) |
|
464 |
$1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES)))) |
|
465 |
$1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS)) |
|
466 |
endif |
|
467 |
ifneq ($$($1_EXCLUDES),) |
|
468 |
$1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES)))) |
|
469 |
$1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS)) |
|
470 |
endif |
|
471 |
||
25854 | 472 |
# All files below META-INF are always copied. |
473 |
$1_ALL_COPIES := $$(filter $$(addsuffix /META-INF%,$$($1_SRC)),$$($1_ALL_SRCS)) |
|
20363 | 474 |
# Find all files to be copied from source to bin. |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
475 |
ifneq (,$$($1_COPY)$$($1_COPY_FILES)) |
20363 | 476 |
# Search for all files to be copied. |
25854 | 477 |
$1_ALL_COPIES += $$(filter $$(addprefix %,$$($1_COPY)),$$($1_ALL_SRCS)) |
20363 | 478 |
# Copy these explicitly |
479 |
$1_ALL_COPIES += $$($1_COPY_FILES) |
|
28601
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
480 |
endif |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
481 |
# Copy must also respect filters. |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
482 |
ifneq (,$$($1_INCLUDES)) |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
483 |
$1_ALL_COPIES := $$(filter $$($1_SRC_INCLUDES),$$($1_ALL_COPIES)) |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
484 |
endif |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
485 |
ifneq (,$$($1_EXCLUDES)) |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
486 |
$1_ALL_COPIES := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_COPIES)) |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
487 |
endif |
28601
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
488 |
ifneq (,$$($1_EXCLUDE_FILES)) |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
489 |
$1_ALL_COPIES := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$($1_ALL_COPIES)) |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
490 |
endif |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
491 |
ifneq (,$$($1_ALL_COPIES)) |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
492 |
# Yep, there are files to be copied! |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
493 |
$1_ALL_COPY_TARGETS:= |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
494 |
$$(foreach i,$$($1_ALL_COPIES),$$(eval $$(call add_file_to_copy,$1,$$i))) |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
495 |
# Now we can depend on $$($1_ALL_COPY_TARGETS) to copy all files! |
de178dea78cd
8071550: SetupJavaComilation EXCLUDE/INCLUDE/EXCLUDE_FILE do not work on META-INF files
erikj
parents:
28600
diff
changeset
|
496 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
497 |
|
20363 | 498 |
# Find all property files to be copied and cleaned from source to bin. |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
499 |
ifneq (,$$($1_CLEAN)$$($1_CLEAN_FILES)) |
20363 | 500 |
# Search for all files to be copied. |
501 |
$1_ALL_CLEANS := $$(filter $$(addprefix %,$$($1_CLEAN)),$$($1_ALL_SRCS)) |
|
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
502 |
# Clean these explicitly |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
503 |
$1_ALL_CLEANS += $$($1_CLEAN_FILES) |
20363 | 504 |
# Copy and clean must also respect filters. |
505 |
ifneq (,$$($1_INCLUDES)) |
|
506 |
$1_ALL_CLEANS := $$(filter $$($1_SRC_INCLUDES),$$($1_ALL_CLEANS)) |
|
507 |
endif |
|
508 |
ifneq (,$$($1_EXCLUDES)) |
|
509 |
$1_ALL_CLEANS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_CLEANS)) |
|
510 |
endif |
|
511 |
ifneq (,$$($1_EXCLUDE_FILES)) |
|
512 |
$1_ALL_CLEANS := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$($1_ALL_CLEANS)) |
|
513 |
endif |
|
514 |
ifneq (,$$($1_ALL_CLEANS)) |
|
515 |
# Yep, there are files to be copied and cleaned! |
|
516 |
$1_ALL_COPY_CLEAN_TARGETS:= |
|
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
517 |
$$(foreach i,$$($1_ALL_CLEANS),$$(eval $$(call add_file_to_clean,$1,$$i))) |
20363 | 518 |
# Now we can depend on $$($1_ALL_COPY_CLEAN_TARGETS) to copy all files! |
519 |
endif |
|
520 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
521 |
|
20363 | 522 |
# Create a sed expression to remove the source roots and to replace / with . |
523 |
# and remove .java at the end. |
|
524 |
$1_REWRITE_INTO_CLASSES:=$$(foreach i,$$($1_SRC),-e 's|$$i/||g') -e 's|/|.|g' -e 's|.java$$$$||g' |
|
525 |
||
526 |
ifeq ($$($1_DISABLE_SJAVAC)x$$(ENABLE_SJAVAC),xyes) |
|
527 |
ifneq (,$$($1_HEADERS)) |
|
528 |
$1_HEADERS_ARG := -h $$($1_HEADERS) |
|
13697 | 529 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
530 |
|
20363 | 531 |
# Using sjavac to compile. |
26129
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
532 |
$1_COMPILE_TARGETS := $$($1_BIN)/_the.$1_batch |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
533 |
|
20363 | 534 |
# Create SJAVAC variable form JAVAC variable. Expects $1_JAVAC to be |
535 |
# "bootclasspathprepend -cp .../javac.jar com.sun.tools.javac.Main" |
|
536 |
# and javac is simply replaced with sjavac. |
|
537 |
$1_SJAVAC:=$$(subst com.sun.tools.javac.Main,com.sun.tools.sjavac.Main,$$($1_JAVAC)) |
|
538 |
||
539 |
# Set the $1_REMOTE to spawn a background javac server. |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
540 |
$1_REMOTE:=--server:portfile=$$($1_SJAVAC_PORTFILE),id=$1,sjavac=$$(subst \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
541 |
$$(SPACE),%20,$$(subst $$(COMMA),%2C,$$(strip $$($1_SERVER_JVM) $$($1_SJAVAC)))) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
542 |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
543 |
$1_VARDEPS := $$($1_JVM) $$($1_SJAVAC) $$($1_SJAVAC_ARGS) $$($1_FLAGS) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
544 |
$$($1_HEADERS_ARG) $$($1_BIN) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
545 |
$1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, $$($1_BIN)/_the.$1.vardeps) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
546 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
547 |
$$($1_BIN)/_the.$1_batch: $$($1_SRCS) $$($1_DEPENDS) $$($1_VARDEPS_FILE) |
28360 | 548 |
$(MKDIR) -p $$(@D) $$(dir $$($1_SJAVAC_PORTFILE)) |
26129
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
549 |
# As a workaround for sjavac not tracking api changed from the classpath, force full |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
550 |
# recompile if an external dependency, which is something other than a source |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
551 |
# change, triggered this compilation. |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
552 |
$$(if $$(filter-out $$($1_SRCS), $$?), $(FIND) $$(@D) -name "*.class" $(FIND_DELETE)) |
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
553 |
$$(call ListPathsSafely,$1_SRCS,\n, >> $$($1_BIN)/_the.$1_batch.tmp) |
20363 | 554 |
$(ECHO) Compiling $1 |
555 |
($$($1_JVM) $$($1_SJAVAC) \ |
|
556 |
$$($1_REMOTE) \ |
|
25854 | 557 |
-j 1 \ |
20363 | 558 |
--permit-unidentified-artifacts \ |
559 |
--permit-sources-without-package \ |
|
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
560 |
--compare-found-sources $$($1_BIN)/_the.$1_batch.tmp \ |
20363 | 561 |
--log=$(LOG_LEVEL) \ |
562 |
$$($1_SJAVAC_ARGS) \ |
|
563 |
$$($1_FLAGS) \ |
|
564 |
$$($1_HEADERS_ARG) \ |
|
565 |
-d $$($1_BIN) && \ |
|
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
566 |
$(MV) $$($1_BIN)/_the.$1_batch.tmp $$($1_BIN)/_the.$1_batch) |
26129
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
567 |
# Create a pubapi file that only changes when the pubapi changes. Dependent |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
568 |
# compilations can use this file to only get recompiled when pubapi has changed. |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
569 |
# Grep returns 1 if no matching lines are found. Do not fail for this. |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
570 |
$(GREP) -e "^I" $$($1_BIN)/javac_state > $$($1_BIN)/_the.$1_pubapi.tmp \ |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
571 |
|| test "$$$$?" = "1" |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
572 |
if [ ! -f $$($1_BIN)/_the.$1_pubapi ] \ |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
573 |
|| [ "`$(DIFF) $$($1_BIN)/_the.$1_pubapi $$($1_BIN)/_the.$1_pubapi.tmp`" != "" ]; then \ |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
574 |
$(MV) $$($1_BIN)/_the.$1_pubapi.tmp $$($1_BIN)/_the.$1_pubapi; \ |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
575 |
fi |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
576 |
|
20363 | 577 |
else |
578 |
# Using plain javac to batch compile everything. |
|
25854 | 579 |
$1_COMPILE_TARGETS := $$($1_BIN)/_the.$1_batch |
14111 | 580 |
|
20363 | 581 |
# When building in batch, put headers in a temp dir to filter out those that actually |
582 |
# changed before copying them to the real header dir. |
|
583 |
ifneq (,$$($1_HEADERS)) |
|
22481
e0f8e9039971
8033210: Intermittent build failure: jdk8 fails on win_i586 in jdk/make (p11_convert.c(67) : Cannot open 'sun_security_pkcs11_wrapper_PKCS11.h)
erikj
parents:
22480
diff
changeset
|
584 |
$1_HEADERS_ARG := -h $$($1_HEADERS).$1.tmp |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
585 |
|
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
586 |
$$($1_HEADERS)/_the.$1_headers: $$($1_BIN)/_the.$1_batch |
14111 | 587 |
$(MKDIR) -p $$(@D) |
25854 | 588 |
if [ -d "$$($1_HEADERS).$1.tmp" ]; then \ |
589 |
for f in `ls $$($1_HEADERS).$1.tmp`; do \ |
|
590 |
if [ ! -f "$$($1_HEADERS)/$$$$f" ] \ |
|
591 |
|| [ "`$(DIFF) $$($1_HEADERS)/$$$$f $$($1_HEADERS).$1.tmp/$$$$f`" != "" ]; then \ |
|
22481
e0f8e9039971
8033210: Intermittent build failure: jdk8 fails on win_i586 in jdk/make (p11_convert.c(67) : Cannot open 'sun_security_pkcs11_wrapper_PKCS11.h)
erikj
parents:
22480
diff
changeset
|
592 |
$(CP) -f $$($1_HEADERS).$1.tmp/$$$$f $$($1_HEADERS)/$$$$f; \ |
14111 | 593 |
fi; \ |
25854 | 594 |
done; \ |
595 |
fi |
|
22481
e0f8e9039971
8033210: Intermittent build failure: jdk8 fails on win_i586 in jdk/make (p11_convert.c(67) : Cannot open 'sun_security_pkcs11_wrapper_PKCS11.h)
erikj
parents:
22480
diff
changeset
|
596 |
$(RM) -r $$($1_HEADERS).$1.tmp |
14111 | 597 |
$(TOUCH) $$@ |
598 |
||
25854 | 599 |
$1_HEADER_TARGETS := $$($1_HEADERS)/_the.$1_headers |
20363 | 600 |
endif |
14111 | 601 |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
602 |
$1_VARDEPS := $$($1_JVM) $$($1_JAVAC) $$($1_FLAGS) $$($1_BIN) $$($1_HEADERS_ARG) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
603 |
$1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, $$($1_BIN)/_the.$1.vardeps) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
604 |
|
20363 | 605 |
# When not using sjavac, pass along all sources to javac using an @file. |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
606 |
$$($1_BIN)/_the.$1_batch: $$($1_SRCS) $$($1_DEPENDS) $$($1_VARDEPS_FILE) |
20363 | 607 |
$(MKDIR) -p $$(@D) |
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
608 |
$(RM) $$($1_BIN)/_the.$1_batch $$($1_BIN)/_the.$1_batch.tmp |
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
609 |
$$(call ListPathsSafely,$1_SRCS,\n, >> $$($1_BIN)/_the.$1_batch.tmp) |
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
610 |
$(ECHO) Compiling `$(WC) $$($1_BIN)/_the.$1_batch.tmp | $(TR) -s ' ' | $(CUT) -f 2 -d ' '` files for $1 |
20363 | 611 |
($$($1_JVM) $$($1_JAVAC) $$($1_FLAGS) \ |
27866
e6c790ef8899
8066761: Investigate -sourcepath usage when compiling java
erikj
parents:
27602
diff
changeset
|
612 |
-implicit:none \ |
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
613 |
-d $$($1_BIN) $$($1_HEADERS_ARG) @$$($1_BIN)/_the.$1_batch.tmp && \ |
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
614 |
$(MV) $$($1_BIN)/_the.$1_batch.tmp $$($1_BIN)/_the.$1_batch) |
14111 | 615 |
|
20363 | 616 |
endif |
617 |
||
25854 | 618 |
# Add all targets to main variable |
619 |
$1 := $$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS) $$($1_COMPILE_TARGETS) \ |
|
620 |
$$($1_HEADER_TARGETS) |
|
621 |
||
20363 | 622 |
# Check if a jar file was specified, then setup the rules for the jar. |
623 |
ifneq (,$$($1_JAR)) |
|
624 |
# If no suffixes was explicitly set for this jar file. |
|
625 |
# Use class and the cleaned/copied properties file suffixes as the default |
|
626 |
# for the types of files to be put into the jar. |
|
627 |
ifeq (,$$($1_SUFFIXES)) |
|
628 |
$1_SUFFIXES:=.class $$($1_CLEAN) $$($1_COPY) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
629 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
630 |
|
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
631 |
$$(eval $$(call SetupArchive,ARCHIVE_$1, \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
29174
diff
changeset
|
632 |
DEPENDENCIES:=$$($1), \ |
20363 | 633 |
SRCS:=$$($1_BIN), \ |
634 |
SUFFIXES:=$$($1_SUFFIXES), \ |
|
635 |
EXCLUDE:=$$($1_EXCLUDES), \ |
|
636 |
INCLUDES:=$$($1_INCLUDES), \ |
|
637 |
EXTRA_FILES:=$$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS), \ |
|
638 |
JAR:=$$($1_JAR), \ |
|
639 |
JARMAIN:=$$($1_JARMAIN), \ |
|
640 |
MANIFEST:=$$($1_MANIFEST), \ |
|
641 |
EXTRA_MANIFEST_ATTR:=$$($1_EXTRA_MANIFEST_ATTR), \ |
|
642 |
JARINDEX:=$$($1_JARINDEX), \ |
|
643 |
HEADERS:=$$($1_HEADERS), \ |
|
644 |
SETUP:=$$($1_SETUP))) |
|
22480
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
645 |
|
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
646 |
# Add jar to target list |
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
647 |
$1 += $$($1_JAR) |
20363 | 648 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
649 |
|
20363 | 650 |
# Check if a srczip was specified, then setup the rules for the srczip. |
651 |
ifneq (,$$($1_SRCZIP)) |
|
652 |
$$(eval $$(call SetupZipArchive,ARCHIVE_$1, \ |
|
653 |
SRC:=$$($1_SRC), \ |
|
654 |
ZIP:=$$($1_SRCZIP), \ |
|
655 |
INCLUDES:=$$($1_INCLUDES), \ |
|
656 |
EXCLUDES:=$$($1_EXCLUDES), \ |
|
657 |
EXCLUDE_FILES:=$$($1_EXCLUDE_FILES))) |
|
22480
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
658 |
|
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
659 |
# Add zip to target list |
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
660 |
$1 += $$($1_SRCZIP) |
20363 | 661 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
662 |
endef |
25854 | 663 |
|
664 |
# Use this macro to find the correct target to depend on when the original |
|
665 |
# SetupJavaCompilation is declared in a different makefile, to avoid having |
|
666 |
# to declare and evaluate it again. |
|
667 |
# param 1 is for example BUILD_MYPACKAGE |
|
668 |
# param 2 is the output directory (BIN) |
|
669 |
define SetupJavaCompilationCompileTarget |
|
26129
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
670 |
$(if $(findstring yes, $(ENABLE_SJAVAC)), $(strip $2)/_the.$(strip $1)_pubapi, \ |
25854 | 671 |
$(strip $2)/_the.$(strip $1)_batch) |
672 |
endef |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
673 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
674 |
endif # _JAVA_COMPILATION_GMK |