make/gensrc/GensrcCharsetMapping.gmk
author alanb
Sat, 30 Nov 2019 16:21:19 +0000
changeset 59329 289000934908
parent 47217 72e3ae9a25eb
child 57136 c9bcd764f1f4
permissions -rw-r--r--
8234805: (dc) Remove JNI upcall from DatagramChannel.receive implementation Reviewed-by: dfuchs, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     1
#
22639
37f4508257fe 8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents: 21805
diff changeset
     2
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     4
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    10
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    15
# accompanied this code).
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    16
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    20
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    23
# questions.
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    24
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents:
diff changeset
    25
26717
d65c07a65486 8055189: Cleanup gensrc after source code restructure
erikj
parents: 25859
diff changeset
    26
################################################################################
d65c07a65486 8055189: Cleanup gensrc after source code restructure
erikj
parents: 25859
diff changeset
    27
#
28969
f980bee32887 8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents: 27565
diff changeset
    28
# Generate StandardCharsets.java and individul sun.nio.cs charset class using
f980bee32887 8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents: 27565
diff changeset
    29
# the charsetmapping tool
26717
d65c07a65486 8055189: Cleanup gensrc after source code restructure
erikj
parents: 25859
diff changeset
    30
#
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    31
CHARSET_DATA_DIR := $(TOPDIR)/make/data/charsetmapping
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    32
CHARSET_EXTSRC_DIR := $(TOPDIR)/src/jdk.charsets/share/classes/sun/nio/cs/ext
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26717
diff changeset
    33
CHARSET_GENSRC_JAVA_DIR_BASE := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/sun/nio/cs
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 22639
diff changeset
    34
CHARSET_DONE_BASE := $(CHARSET_GENSRC_JAVA_DIR_BASE)/_the.charsetmapping
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    35
CHARSET_COPYRIGHT_HEADER := $(TOPDIR)/make/jdk/src/classes/build/tools/charsetmapping
22639
37f4508257fe 8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents: 21805
diff changeset
    36
CHARSET_TEMPLATES := \
37f4508257fe 8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents: 21805
diff changeset
    37
    $(CHARSET_DATA_DIR)/SingleByte-X.java.template \
37f4508257fe 8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents: 21805
diff changeset
    38
    $(CHARSET_DATA_DIR)/DoubleByte-X.java.template
28969
f980bee32887 8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents: 27565
diff changeset
    39
CHARSET_STANDARD_JAVA_TEMPLATES := \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    40
    $(TOPDIR)/src/java.base/share/classes/sun/nio/cs/StandardCharsets.java.template
28969
f980bee32887 8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents: 27565
diff changeset
    41
CHARSET_STANDARD_OS := stdcs-$(OPENJDK_TARGET_OS)
22639
37f4508257fe 8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents: 21805
diff changeset
    42
28969
f980bee32887 8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents: 27565
diff changeset
    43
$(CHARSET_DONE_BASE)-stdcs: $(CHARSET_DATA_DIR)/charsets \
29016
f14b019bfdfa 8073328: Incremental build of gensrc broken
erikj
parents: 28969
diff changeset
    44
    $(wildcard $(CHARSET_DATA_DIR)/$(CHARSET_STANDARD_OS)) \
f14b019bfdfa 8073328: Incremental build of gensrc broken
erikj
parents: 28969
diff changeset
    45
    $(CHARSET_TEMPLATES) $(CHARSET_STANDARD_JAVA_TEMPLATES) \
f14b019bfdfa 8073328: Incremental build of gensrc broken
erikj
parents: 28969
diff changeset
    46
    $(BUILD_TOOLS_JDK)
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 29119
diff changeset
    47
	$(call LogInfo, Generating java.base charset mapping)
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 29119
diff changeset
    48
	$(call MakeDir, $(@D))
28969
f980bee32887 8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents: 27565
diff changeset
    49
	$(TOOL_CHARSETMAPPING) $(CHARSET_DATA_DIR) $(CHARSET_GENSRC_JAVA_DIR_BASE) \
29016
f14b019bfdfa 8073328: Incremental build of gensrc broken
erikj
parents: 28969
diff changeset
    50
	    stdcs charsets $(CHARSET_STANDARD_OS) \
29119
f680ba340556 8073893: Enable charsets build system to configure euc_tw into java.base module/sun.nio.cs
sherman
parents: 29016
diff changeset
    51
	    $(CHARSET_STANDARD_JAVA_TEMPLATES) $(CHARSET_EXTSRC_DIR) \
f680ba340556 8073893: Enable charsets build system to configure euc_tw into java.base module/sun.nio.cs
sherman
parents: 29016
diff changeset
    52
	    $(CHARSET_COPYRIGHT_HEADER) \
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 29119
diff changeset
    53
            $(LOG_DEBUG)
22639
37f4508257fe 8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents: 21805
diff changeset
    54
	$(TOUCH) '$@'
37f4508257fe 8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents: 21805
diff changeset
    55
28969
f980bee32887 8073152: Update Standard/ExtendedCharsets to work with module system
sherman
parents: 27565
diff changeset
    56
GENSRC_JAVA_BASE += $(CHARSET_DONE_BASE)-stdcs