2
# Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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.
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
26
################################################################################
27
# Install the launcher name, release version string, full version
28
# string and the runtime name into the VersionProps.java file.
30
$(eval $(call SetupTextFileProcessing, BUILD_VERSION_JAVA, \
31
SOURCE_FILES := $(TOPDIR)/src/java.base/share/classes/java/lang/VersionProps.java.template, \
32
OUTPUT_FILE := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/java/lang/VersionProps.java, \
34
@@LAUNCHER_NAME@@ => $(LAUNCHER_NAME) ; \
35
@@RUNTIME_NAME@@ => $(RUNTIME_NAME) ; \
36
@@VERSION_SHORT@@ => $(VERSION_SHORT) ; \
37
@@VERSION_STRING@@ => $(VERSION_STRING) ; \
38
@@VERSION_NUMBER@@ => $(VERSION_NUMBER) ; \
39
@@VERSION_PRE@@ => $(VERSION_PRE) ; \
40
@@VERSION_BUILD@@ => $(VERSION_BUILD) ; \
41
@@VERSION_OPT@@ => $(VERSION_OPT) ; \
42
@@VERSION_DATE@@ => $(VERSION_DATE) ; \
43
@@VERSION_CLASSFILE_MAJOR@@ => $(VERSION_CLASSFILE_MAJOR) ; \
44
@@VERSION_CLASSFILE_MINOR@@ => $(VERSION_CLASSFILE_MINOR) ; \
45
@@VERSION_SPECIFICATION@@ => $(VERSION_SPECIFICATION) ; \
46
@@VENDOR_VERSION_STRING@@ => $(VENDOR_VERSION_STRING) ; \
47
@@VENDOR@@ => $(COMPANY_NAME) ; \
48
@@VENDOR_URL@@ => $(VENDOR_URL) ; \
49
@@VENDOR_URL_BUG@@ => $(VENDOR_URL_BUG) ; \
50
@@VENDOR_URL_VM_BUG@@ => $(VENDOR_URL_VM_BUG), \
54
# Normalize OPENJDK_TARGET_CPU name to match jdk.internal.util.Architecture enum
55
ifneq ($(filter $(OPENJDK_TARGET_CPU), s390x), )
56
OPENJDK_TARGET_ARCH_CANONICAL = s390
57
else ifneq ($(filter $(OPENJDK_TARGET_CPU), x86_64 amd64), )
58
OPENJDK_TARGET_ARCH_CANONICAL = x64
60
OPENJDK_TARGET_ARCH_CANONICAL := $(OPENJDK_TARGET_CPU)
63
# Normalize OPENJDK_TARGET_OS operating system name to match jdk.internal.util.OperatingSystem enum
64
ifeq ($(OPENJDK_TARGET_OS), macosx)
65
OPENJDK_TARGET_OS_CANONICAL = macos
67
OPENJDK_TARGET_OS_CANONICAL := $(OPENJDK_TARGET_OS)
70
$(eval $(call SetupTextFileProcessing, BUILD_PLATFORMPROPERTIES_JAVA, \
71
SOURCE_FILES := $(TOPDIR)/src/java.base/share/classes/jdk/internal/util/PlatformProps.java.template, \
72
OUTPUT_FILE := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/jdk/internal/util/PlatformProps.java, \
74
@@OPENJDK_TARGET_OS@@ => $(OPENJDK_TARGET_OS_CANONICAL) ; \
75
@@OPENJDK_TARGET_CPU@@ => $(OPENJDK_TARGET_ARCH_CANONICAL) ; \
76
@@OPENJDK_TARGET_CPU_ENDIAN@@ => $(OPENJDK_TARGET_CPU_ENDIAN) ; \
77
@@OPENJDK_TARGET_CPU_BITS@@ => $(OPENJDK_TARGET_CPU_BITS), \
80
TARGETS += $(BUILD_VERSION_JAVA) $(BUILD_PLATFORMPROPERTIES_JAVA)
81
################################################################################
83
ifneq ($(filter $(TOOLCHAIN_TYPE), gcc clang), )
84
# Need to specify language since the template file has a non standard
87
else ifeq ($(TOOLCHAIN_TYPE), microsoft)
90
ifeq ($(OPENJDK_TARGET_CPU),aarch64)
91
# cl.exe does only recognize few file extensions as valid (ex: .c, .h, .cpp), so
92
# make sure *.java.template files are recognized as valid input files
97
# Generate a java source file from a template through the C preprocessor for the
98
# target system. First extract the copyright notice at the start of the file.
99
# Run the preprocessor. Filter out the default compiler stderr output on
100
# Windows. Filter out all the header files output. Remove all "PREFIX_" strings
101
# that were added to variable references in the template files to avoid being
102
# matched by the preprocessor. Remove any #line directives left by the
104
define generate-preproc-src
105
$(call MakeDir, $(@D))
106
$(call ExecuteWithLog, $(SUPPORT_OUTPUTDIR)/gensrc/java.base/_$(@F), \
107
( $(AWK) '/@@END_COPYRIGHT@@/{exit}1' $< && \
108
$(CPP) $(CPP_FLAGS) $(SYSROOT_CFLAGS) $(CFLAGS_JDKLIB) $(CPP_FILEPREFIX) $< \
109
2> >($(GREP) -v '^$(<F)$$' >&2) \
110
| $(AWK) '/@@START_HERE@@/,0' \
111
| $(SED) -e 's/@@START_HERE@@/\/\/ AUTOMATICALLY GENERATED FILE - DO NOT EDIT/' \
112
-e 's/PREFIX_//' -e 's/^#.*//' \
117
GENSRC_SOR_FILE += $(SUPPORT_OUTPUTDIR)/gensrc/java.base/sun/nio/ch/SocketOptionRegistry.java
120
$(TOPDIR)/src/java.base/share/classes/sun/nio/ch/SocketOptionRegistry.java.template
121
$(generate-preproc-src)
123
TARGETS += $(GENSRC_SOR_FILE)
125
################################################################################
127
ifeq ($(call isTargetOs, windows), false)
129
GENSRC_UC_FILE := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/sun/nio/fs/UnixConstants.java
132
$(TOPDIR)/src/java.base/unix/classes/sun/nio/fs/UnixConstants.java.template
133
$(generate-preproc-src)
135
TARGETS += $(GENSRC_UC_FILE)
139
# Create the javax/crypto/JceSecurity.class, using the build default.
141
ifeq ($(UNLIMITED_CRYPTO), true)
142
JCE_DEFAULT_POLICY = unlimited
144
JCE_DEFAULT_POLICY = limited
147
ifneq ($(wildcard $(TOPDIR)/src/java.base/share/classes/javax/crypto/JceSecurity.java.template), )
148
$(eval $(call SetupTextFileProcessing, BUILD_JCESECURITY_JAVA, \
149
SOURCE_FILES := $(TOPDIR)/src/java.base/share/classes/javax/crypto/JceSecurity.java.template, \
150
OUTPUT_FILE := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/javax/crypto/JceSecurity.java, \
152
@@JCE_DEFAULT_POLICY@@ => $(JCE_DEFAULT_POLICY), \
155
TARGETS += $(BUILD_JCESECURITY_JAVA)