author | erikj |
Thu, 10 May 2018 10:00:49 -0700 | |
changeset 50078 | 5730ca794584 |
parent 50075 | bbcbfa18b0e8 |
child 50084 | 44b64fc0baa3 |
permissions | -rw-r--r-- |
25859 | 1 |
# |
44117
7108a2c20885
8170884: Clean up post-jlink file copying to the images
ihse
parents:
42759
diff
changeset
|
2 |
# Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved. |
25859 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
include CopyCommon.gmk |
|
49537
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
27 |
include Modules.gmk |
48355 | 28 |
include TextFileProcessing.gmk |
25859 | 29 |
|
47314 | 30 |
$(eval $(call IncludeCustomExtension, copy/Copy-java.base.gmk)) |
25859 | 31 |
|
32 |
################################################################################ |
|
33 |
||
34 |
ifneq ($(findstring $(OPENJDK_TARGET_OS), windows aix),) |
|
35 |
||
47217 | 36 |
TZMAPPINGS_SRC := $(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS)/conf |
25859 | 37 |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25859
diff
changeset
|
38 |
$(LIB_DST_DIR)/tzmappings: $(TZMAPPINGS_SRC)/tzmappings |
25859 | 39 |
$(call install-file) |
40 |
||
27565 | 41 |
TARGETS += $(LIB_DST_DIR)/tzmappings |
25859 | 42 |
|
43 |
endif |
|
44 |
||
45 |
################################################################################ |
|
28984
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
46 |
# Copy the microsoft runtime libraries on windows |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
47 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
25859 | 48 |
|
49 |
# Chmod to avoid permission issues if bundles are unpacked on unix platforms. |
|
28984
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
50 |
define copy-and-chmod |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
51 |
$(install-file) |
25859 | 52 |
$(CHMOD) a+rx $@ |
28984
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
53 |
endef |
27565 | 54 |
|
28984
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
55 |
# Use separate macro calls in case the source files are not in the same |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
56 |
# directory. |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
57 |
$(eval $(call SetupCopyFiles,COPY_MSVCR, \ |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
58 |
DEST := $(LIB_DST_DIR), \ |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
59 |
FILES := $(MSVCR_DLL), \ |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
60 |
MACRO := copy-and-chmod)) |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
61 |
|
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
62 |
$(eval $(call SetupCopyFiles,COPY_MSVCP, \ |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
63 |
DEST := $(LIB_DST_DIR), \ |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
64 |
FILES := $(MSVCP_DLL), \ |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
65 |
MACRO := copy-and-chmod)) |
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
66 |
|
12031ba2dc38
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
27799
diff
changeset
|
67 |
TARGETS += $(COPY_MSVCR) $(COPY_MSVCP) |
50073
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49537
diff
changeset
|
68 |
|
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49537
diff
changeset
|
69 |
ifneq ($(UCRT_DLL_DIR), ) |
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49537
diff
changeset
|
70 |
$(eval $(call SetupCopyFiles, COPY_UCRT_DLLS, \ |
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49537
diff
changeset
|
71 |
DEST := $(LIB_DST_DIR), \ |
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49537
diff
changeset
|
72 |
SRC := $(UCRT_DLL_DIR), \ |
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49537
diff
changeset
|
73 |
FILES := $(wildcard $(UCRT_DLL_DIR)/*.dll), \ |
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49537
diff
changeset
|
74 |
MACRO := copy-and-chmod, \ |
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49537
diff
changeset
|
75 |
)) |
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49537
diff
changeset
|
76 |
|
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49537
diff
changeset
|
77 |
TARGETS += $(COPY_UCRT_DLLS) |
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
49537
diff
changeset
|
78 |
endif |
25859 | 79 |
endif |
80 |
||
81 |
################################################################################ |
|
82 |
# |
|
83 |
# How to install jvm.cfg. |
|
84 |
# |
|
47687 | 85 |
ifeq ($(call check-jvm-variant, zero), true) |
25859 | 86 |
JVMCFG_ARCH := zero |
87 |
else |
|
88 |
JVMCFG_ARCH := $(OPENJDK_TARGET_CPU_LEGACY) |
|
89 |
endif |
|
90 |
||
91 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
47217 | 92 |
JVMCFG_SRC := $(TOPDIR)/src/java.base/macosx/conf/$(JVMCFG_ARCH)/jvm.cfg |
25859 | 93 |
else |
47217 | 94 |
JVMCFG_SRC := $(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/conf/$(JVMCFG_ARCH)/jvm.cfg |
29718
d0e9a4ece867
8072740: move closed jvm.cfg files out of open repo
dholmes
parents:
28984
diff
changeset
|
95 |
# Allow override by ALT_JVMCFG_SRC if it exists |
37525 | 96 |
JVMCFG_SRC := $(if $(wildcard $(ALT_JVMCFG_SRC)),$(ALT_JVMCFG_SRC),$(JVMCFG_SRC)) |
25859 | 97 |
endif |
42753
40f61533b93d
8066474: Remove the lib/ directory from Linux and Solaris images
erikj
parents:
41833
diff
changeset
|
98 |
JVMCFG := $(LIB_DST_DIR)/jvm.cfg |
25859 | 99 |
|
50075
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
100 |
# We have three potential VMs: client, server and minimal. |
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
101 |
# Historically we usually have both client and server and so that is what the |
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
102 |
# committed jvm.cfg expects (including platform specific ergonomics switches |
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
103 |
# to decide whether to use client or server by default). So when we have anything |
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
104 |
# other than client and server we need to define a new jvm.cfg file. |
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
105 |
# The main problem is deciding whether to use aliases for the VMs that are not |
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
106 |
# present and the current position is that we add aliases for client and server, but |
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
107 |
# not for minimal. |
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
108 |
CLIENT_AND_SERVER := $(call check-jvm-variant, client)+$(call check-jvm-variant, server) |
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
109 |
ifeq ($(CLIENT_AND_SERVER), true+true) |
25859 | 110 |
COPY_JVM_CFG_FILE := true |
111 |
else |
|
50075
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
112 |
# For zero, the default jvm.cfg file is sufficient |
bbcbfa18b0e8
8202683: Minimal VM should build cleanly on 64-bit platforms
shade
parents:
50073
diff
changeset
|
113 |
ifeq ($(call check-jvm-variant, zero), true) |
25859 | 114 |
COPY_JVM_CFG_FILE := true |
115 |
endif |
|
116 |
endif |
|
117 |
||
118 |
ifeq ($(COPY_JVM_CFG_FILE), true) |
|
119 |
$(JVMCFG): $(JVMCFG_SRC) |
|
120 |
$(call install-file) |
|
121 |
else |
|
122 |
$(JVMCFG): |
|
123 |
$(MKDIR) -p $(@D) |
|
124 |
$(RM) $(@) |
|
125 |
# Now check for other permutations |
|
37525 | 126 |
ifeq ($(call check-jvm-variant, server), true) |
50078 | 127 |
$(PRINTF) -- "-server KNOWN\n">>$(@) |
128 |
$(PRINTF) -- "-client ALIASED_TO -server\n">>$(@) |
|
37525 | 129 |
ifeq ($(call check-jvm-variant, minimal), true) |
50078 | 130 |
$(PRINTF) -- "-minimal KNOWN\n">>$(@) |
25859 | 131 |
endif |
132 |
else |
|
37525 | 133 |
ifeq ($(call check-jvm-variant, client), true) |
50078 | 134 |
$(PRINTF) -- "-client KNOWN\n">>$(@) |
135 |
$(PRINTF) -- "-server ALIASED_TO -client\n">>$(@) |
|
37525 | 136 |
ifeq ($(call check-jvm-variant, minimal), true) |
50078 | 137 |
$(PRINTF) -- "-minimal KNOWN\n">>$(@) |
25859 | 138 |
endif |
139 |
else |
|
37525 | 140 |
ifeq ($(call check-jvm-variant, minimal), true) |
50078 | 141 |
$(PRINTF) -- "-minimal KNOWN\n">>$(@) |
142 |
$(PRINTF) -- "-server ALIASED_TO -minimal\n">>$(@) |
|
143 |
$(PRINTF) -- "-client ALIASED_TO -minimal\n">>$(@) |
|
25859 | 144 |
endif |
145 |
endif |
|
146 |
endif |
|
147 |
endif |
|
148 |
||
27565 | 149 |
TARGETS += $(JVMCFG) |
25859 | 150 |
|
151 |
################################################################################ |
|
152 |
||
47217 | 153 |
POLICY_SRC := $(TOPDIR)/src/java.base/share/conf/security/java.policy |
27565 | 154 |
POLICY_DST := $(CONF_DST_DIR)/security/java.policy |
25859 | 155 |
|
39884
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
156 |
POLICY_SRC_LIST := $(POLICY_SRC) |
25859 | 157 |
|
158 |
$(POLICY_DST): $(POLICY_SRC_LIST) |
|
159 |
$(MKDIR) -p $(@D) |
|
160 |
$(RM) $@ $@.tmp |
|
161 |
$(foreach f,$(POLICY_SRC_LIST),$(CAT) $(f) >> $@.tmp;) |
|
162 |
$(MV) $@.tmp $@ |
|
163 |
||
27565 | 164 |
TARGETS += $(POLICY_DST) |
25859 | 165 |
|
166 |
################################################################################ |
|
167 |
||
47217 | 168 |
DEF_POLICY_SRC := $(TOPDIR)/src/java.base/share/lib/security/default.policy |
39884
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
169 |
DEF_POLICY_DST := $(LIB_DST_DIR)/security/default.policy |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
170 |
|
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
171 |
DEF_POLICY_SRC_LIST := $(DEF_POLICY_SRC) |
42230
8b75662a3762
8170242: jdk.desktop needs package access to sun.awt.
prr
parents:
41833
diff
changeset
|
172 |
DEF_POLICY_SRC_LIST += $(CUSTOM_POLICY_SRC_LIST) |
39884
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
173 |
|
40401
47a0de15f8b6
8164071: Default.policy file missing content for solaris
mullan
parents:
40253
diff
changeset
|
174 |
ifneq ($(filter $(OPENJDK_TARGET_OS), windows solaris), ) |
47217 | 175 |
DEF_POLICY_SRC_LIST += $(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS)/lib/security/default.policy |
39884
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
176 |
endif |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
177 |
|
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
178 |
# Allow imported modules to modify the java.policy |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
179 |
ifneq ($(IMPORT_MODULES_CONF), ) |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
180 |
DEF_POLICY_SRC_LIST += $(wildcard $(IMPORT_MODULES_CONF)/java.base/security/java.policy.extra) |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
181 |
endif |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
182 |
|
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
183 |
$(DEF_POLICY_DST): $(DEF_POLICY_SRC_LIST) |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
184 |
$(MKDIR) -p $(@D) |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
185 |
$(RM) $@ $@.tmp |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
186 |
$(foreach f,$(DEF_POLICY_SRC_LIST),$(CAT) $(f) >> $@.tmp;) |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
187 |
$(MV) $@.tmp $@ |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
188 |
|
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
189 |
TARGETS += $(DEF_POLICY_DST) |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
190 |
|
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
191 |
################################################################################ |
9a543219d0bb
8159752: Grant de-privileged module permissions by default with java.security.policy override option
mullan
parents:
37525
diff
changeset
|
192 |
|
25859 | 193 |
ifeq ($(CACERTS_FILE), ) |
47217 | 194 |
CACERTS_FILE := $(TOPDIR)/src/java.base/share/lib/security/cacerts |
25859 | 195 |
endif |
35241 | 196 |
|
27565 | 197 |
CACERTS_DST := $(LIB_DST_DIR)/security/cacerts |
25859 | 198 |
|
199 |
$(CACERTS_DST): $(CACERTS_FILE) |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
200 |
$(call LogInfo, Copying $(patsubst $(OUTPUTDIR)/%, %, $@)) |
25859 | 201 |
$(call install-file) |
202 |
||
27565 | 203 |
TARGETS += $(CACERTS_DST) |
25859 | 204 |
|
205 |
################################################################################ |
|
206 |
||
35241 | 207 |
$(eval $(call SetupCopyFiles, COPY_NET_PROPERTIES, \ |
47217 | 208 |
FILES := $(TOPDIR)/src/java.base/share/conf/net.properties, \ |
35241 | 209 |
DEST := $(CONF_DST_DIR), \ |
210 |
)) |
|
25859 | 211 |
|
35241 | 212 |
TARGETS += $(COPY_NET_PROPERTIES) |
25859 | 213 |
|
214 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
35241 | 215 |
$(eval $(call SetupCopyFiles, COPY_SDP_CONF, \ |
47217 | 216 |
FILES := $(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/conf/sdp/sdp.conf.template, \ |
35241 | 217 |
DEST := $(CONF_DST_DIR)/sdp, \ |
218 |
)) |
|
25859 | 219 |
|
35241 | 220 |
TARGETS += $(COPY_SDP_CONF) |
25859 | 221 |
endif |
222 |
||
223 |
################################################################################ |
|
42670
d833113eb7d7
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42230
diff
changeset
|
224 |
|
d833113eb7d7
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42230
diff
changeset
|
225 |
# JDK license and assembly exception files to be packaged in JMOD |
d833113eb7d7
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42230
diff
changeset
|
226 |
|
44264
8ff59e9e832c
8176849: jdk9 BCL builds fail after cleaning up temporary file ASSEMBLY_EXCEPTION
erikj
parents:
44117
diff
changeset
|
227 |
# The license files may not be present if the source has been obtained using a |
8ff59e9e832c
8176849: jdk9 BCL builds fail after cleaning up temporary file ASSEMBLY_EXCEPTION
erikj
parents:
44117
diff
changeset
|
228 |
# different license. |
8ff59e9e832c
8176849: jdk9 BCL builds fail after cleaning up temporary file ASSEMBLY_EXCEPTION
erikj
parents:
44117
diff
changeset
|
229 |
JDK_LICENSE ?= $(wildcard $(TOPDIR)/LICENSE) |
8ff59e9e832c
8176849: jdk9 BCL builds fail after cleaning up temporary file ASSEMBLY_EXCEPTION
erikj
parents:
44117
diff
changeset
|
230 |
JDK_NOTICE ?= $(wildcard $(TOPDIR)/ASSEMBLY_EXCEPTION) |
48338 | 231 |
JDK_ADDITIONAL_LICENSE_INFO ?= $(wildcard $(TOPDIR)/ADDITIONAL_LICENSE_INFO) |
42670
d833113eb7d7
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42230
diff
changeset
|
232 |
|
d833113eb7d7
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42230
diff
changeset
|
233 |
$(eval $(call SetupCopyFiles, COPY_JDK_NOTICES, \ |
48338 | 234 |
FILES := $(JDK_LICENSE) $(JDK_NOTICE) $(JDK_ADDITIONAL_LICENSE_INFO), \ |
49537
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
235 |
DEST := $(COMMON_LEGAL_DST_DIR), \ |
42670
d833113eb7d7
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42230
diff
changeset
|
236 |
FLATTEN := true, \ |
d833113eb7d7
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42230
diff
changeset
|
237 |
)) |
d833113eb7d7
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42230
diff
changeset
|
238 |
|
d833113eb7d7
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42230
diff
changeset
|
239 |
TARGETS += $(COPY_JDK_NOTICES) |
47355
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
240 |
|
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
241 |
################################################################################ |
49537
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
242 |
# |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
243 |
# Copy and filter the legal files depending on what 3rd party components are |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
244 |
# bundled or linked from the OS. |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
245 |
# |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
246 |
ifeq ($(USE_EXTERNAL_LIBZ), true) |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
247 |
LEGAL_EXCLUDES += zlib.md |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
248 |
endif |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
249 |
|
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
250 |
$(eval $(call SetupCopyLegalFiles, COPY_LEGAL, \ |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
251 |
EXCLUDES := $(LEGAL_EXCLUDES), \ |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
252 |
)) |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
253 |
|
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
254 |
TARGETS += $(COPY_LEGAL) |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
255 |
|
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
48355
diff
changeset
|
256 |
################################################################################ |
47355
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
257 |
# Optionally copy libffi.so.? into the the image |
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
258 |
|
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
259 |
ifeq ($(ENABLE_LIBFFI_BUNDLING), true) |
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
260 |
$(eval $(call SetupCopyFiles, COPY_LIBFFI, \ |
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
261 |
FILES := $(LIBFFI_LIB_FILE), \ |
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
262 |
DEST := $(call FindLibDirForModule, $(MODULE)), \ |
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
263 |
FLATTEN := true, \ |
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
264 |
MACRO := install-file-nolink, \ |
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
265 |
)) |
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
266 |
|
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
267 |
TARGETS += $(COPY_LIBFFI) |
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
268 |
endif |
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
269 |
|
8cf060fad8a8
8189430: make/hotspot/copy/Copy-java.base.gmk in wrong location after consolidation
erikj
parents:
47314
diff
changeset
|
270 |
################################################################################ |
48355 | 271 |
# Generate classfile_constants.h |
272 |
||
273 |
$(eval $(call SetupTextFileProcessing, CREATE_CLASSFILE_CONSTANTS_H, \ |
|
274 |
SOURCE_FILES := $(TOPDIR)/src/java.base/share/native/include/classfile_constants.h.template, \ |
|
275 |
OUTPUT_FILE := $(SUPPORT_OUTPUTDIR)/modules_include/java.base/classfile_constants.h, \ |
|
276 |
REPLACEMENTS := \ |
|
277 |
@@VERSION_CLASSFILE_MAJOR@@ => $(VERSION_CLASSFILE_MAJOR) ; \ |
|
278 |
@@VERSION_CLASSFILE_MINOR@@ => $(VERSION_CLASSFILE_MINOR) ; , \ |
|
279 |
)) |
|
280 |
||
281 |
TARGETS += $(CREATE_CLASSFILE_CONSTANTS_H) |
|
282 |
||
283 |
################################################################################ |