jdk

Форк
0
/
JrtfsJar.gmk 
79 строк · 3.1 Кб
1
#
2
# Copyright (c) 2014, 2023, Oracle and/or its affiliates. All rights reserved.
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
default: all
27

28
include $(SPEC)
29
include MakeBase.gmk
30

31
include CopyFiles.gmk
32
include JavaCompilation.gmk
33
include JarArchive.gmk
34
include TextFileProcessing.gmk
35

36
# This rule will be depended on due to the MANIFEST line
37
$(eval $(call SetupTextFileProcessing, BUILD_JAVA_MANIFEST, \
38
  SOURCE_FILES := $(TOPDIR)/make/data/mainmanifest/manifest.mf.template, \
39
  OUTPUT_FILE := $(SUPPORT_OUTPUTDIR)/java-main-manifest.mf, \
40
  REPLACEMENTS := \
41
      @@VERSION_SPECIFICATION@@ => $(VERSION_SPECIFICATION) ; \
42
      @@VERSION_SHORT@@ => $(VERSION_SHORT) ; \
43
      @@COMPANY_NAME@@ => $(COMPANY_NAME) , \
44
))
45

46
JIMAGE_PKGS := \
47
    jdk/internal/jimage \
48
    jdk/internal/jrtfs \
49
    #
50

51
# Compile jrt-fs.jar with the interim compiler, as it
52
# ends up in the image, this will ensure reproducible classes
53
$(eval $(call SetupJavaCompilation, BUILD_JRTFS, \
54
    COMPILER := interim, \
55
    DISABLED_WARNINGS := options, \
56
    TARGET_RELEASE := $(TARGET_RELEASE_JDK8), \
57
    SRC := $(TOPDIR)/src/java.base/share/classes, \
58
    EXCLUDE_FILES := module-info.java, \
59
    INCLUDES := $(JIMAGE_PKGS), \
60
    BIN := $(SUPPORT_OUTPUTDIR)/jrtfs_classes, \
61
))
62

63
# Because of the explicit INCLUDES in the compilation setup above, the service provider
64
# file will not be copied unless META-INF/services would also be added to the INCLUDES.
65
# Adding META-INF/services would include all files in that directory when only the one
66
# is needed, which is why this explicit copy is defined instead.
67
$(eval $(call SetupCopyFiles, COPY_JIMAGE_SERVICE_PROVIDER, \
68
    SRC := $(TOPDIR)/src/java.base/share/classes, \
69
    DEST := $(SUPPORT_OUTPUTDIR)/jrtfs_classes, \
70
    FILES := META-INF/services/java.nio.file.spi.FileSystemProvider))
71

72
$(eval $(call SetupJarArchive, BUILD_JRTFS_JAR, \
73
    DEPENDENCIES := $(BUILD_JRTFS) $(COPY_JIMAGE_SERVICE_PROVIDER), \
74
    SRCS := $(SUPPORT_OUTPUTDIR)/jrtfs_classes, \
75
    JAR := $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/jrt-fs.jar, \
76
    MANIFEST := $(SUPPORT_OUTPUTDIR)/java-main-manifest.mf, \
77
))
78

79
all: $(BUILD_JRTFS_JAR)
80

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.