author | lana |
Thu, 07 Apr 2016 10:07:10 -0700 | |
changeset 36979 | f431c83343d7 |
parent 36766 | 22ae7151aae7 |
child 37827 | 09fa0c82a5f7 |
permissions | -rw-r--r-- |
16198 | 1 |
# |
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
2 |
# Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved. |
16198 | 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 |
# This must be the first rule |
|
27 |
default: all |
|
28 |
||
29 |
-include $(SPEC) |
|
30 |
include MakeBase.gmk |
|
33535 | 31 |
include JarArchive.gmk |
16198 | 32 |
include JavaCompilation.gmk |
26892
97093836f3b7
8059135: New Nasgen dependencies to Nashorn breaks the JDK 9 build - bootstrapping problem?
erikj
parents:
25865
diff
changeset
|
33 |
include SetupJavaCompilers.gmk |
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
34 |
include TextFileProcessing.gmk |
16198 | 35 |
|
32526
0dab24cf1c3c
8065912: Better handling of classpath in build-infra
ihse
parents:
32152
diff
changeset
|
36 |
JDK_CLASSES := $(call PathList, $(strip $(addprefix $(JDK_OUTPUTDIR)/modules/, \ |
34447
ec4c069f9436
8141338: Move jdk.internal.dynalink package to jdk.dynalink
attila
parents:
33535
diff
changeset
|
37 |
java.base java.logging java.scripting jdk.dynalink))) |
16198 | 38 |
|
27571 | 39 |
NASHORN_JAR := $(IMAGES_OUTPUTDIR)/nashorn.jar |
16198 | 40 |
|
36517 | 41 |
MODULESOURCEPATH := $(NASHORN_TOPDIR)/src/*/share/classes |
42 |
||
29134
7242c750aa76
8073560: Update BuildNashorn.gmk to require source/target 8 for jdk9 build
attila
parents:
27571
diff
changeset
|
43 |
# Need to use source and target 8 for nasgen to work. |
20576 | 44 |
$(eval $(call SetupJavaCompiler,GENERATE_NEWBYTECODE_DEBUG, \ |
45 |
JVM := $(JAVA), \ |
|
46 |
JAVAC := $(NEW_JAVAC), \ |
|
36517 | 47 |
FLAGS := -g -source 9 -target 9 -upgrademodulepath "$(JDK_OUTPUTDIR)/modules/" \ |
48 |
-system none -modulesourcepath "$(MODULESOURCEPATH)", \ |
|
20576 | 49 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
50 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
16198 | 51 |
|
52 |
# Build nashorn into intermediate directory |
|
32152
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
31486
diff
changeset
|
53 |
# Name the compilation setup the same as the module, as is done in the global |
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
31486
diff
changeset
|
54 |
# CompileJavaModules.gmk, to make dependency checking with other modules work |
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
31486
diff
changeset
|
55 |
# seamlessly. |
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
31486
diff
changeset
|
56 |
$(eval $(call SetupJavaCompilation,jdk.scripting.nashorn, \ |
20576 | 57 |
SETUP := GENERATE_NEWBYTECODE_DEBUG, \ |
36517 | 58 |
MODULE := jdk.scripting.nashorn, \ |
25865 | 59 |
SRC := $(NASHORN_TOPDIR)/src/jdk.scripting.nashorn/share/classes, \ |
27571 | 60 |
EXCLUDE_FILES := META-INF/MANIFEST.MF, \ |
20576 | 61 |
COPY := .properties .js, \ |
36517 | 62 |
BIN := $(SUPPORT_OUTPUTDIR)/special_classes)) |
16198 | 63 |
|
16266
5ddfc1208ef3
8008950: jdk8/tl failing with SetupJavaCompilation BUILD_NASGEN contains missing directory -c on Windows
alanb
parents:
16265
diff
changeset
|
64 |
NASGEN_SRC := $(NASHORN_TOPDIR)/buildtools/nasgen/src |
25865 | 65 |
ASM_SRC := $(JDK_TOPDIR)/src/java.base/share/classes/jdk/internal/org/objectweb/asm |
16265
bd8e2707574a
8009021: nasgen should be run on boot jdk rather than currenly built jdk
sundar
parents:
16261
diff
changeset
|
66 |
|
16198 | 67 |
# Build nasgen |
20576 | 68 |
$(eval $(call SetupJavaCompilation,BUILD_NASGEN, \ |
26892
97093836f3b7
8059135: New Nasgen dependencies to Nashorn breaks the JDK 9 build - bootstrapping problem?
erikj
parents:
25865
diff
changeset
|
69 |
SETUP := GENERATE_OLDBYTECODE, \ |
20576 | 70 |
SRC := $(NASGEN_SRC) $(ASM_SRC), \ |
36517 | 71 |
BIN := $(BUILDTOOLS_OUTPUTDIR)/nasgen_classes)) |
16198 | 72 |
|
25865 | 73 |
NASHORN_CLASSES_DIR := $(JDK_OUTPUTDIR)/modules/jdk.scripting.nashorn |
74 |
NASGEN_RUN_FILE := $(NASHORN_CLASSES_DIR)/_the.nasgen.run |
|
75 |
||
36517 | 76 |
ifeq ($(BOOT_JDK_MODULAR), true) |
77 |
NASGEN_OPTIONS := \ |
|
78 |
-cp $(BUILDTOOLS_OUTPUTDIR)/nasgen_classes \ |
|
79 |
-Xpatch:$(BUILDTOOLS_OUTPUTDIR)/nasgen_classes \ |
|
36766
22ae7151aae7
8153211: Convert build tool to use the new -XaddExports syntax in bootcycle build
mchung
parents:
36517
diff
changeset
|
80 |
-XaddExports:java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED \ |
22ae7151aae7
8153211: Convert build tool to use the new -XaddExports syntax in bootcycle build
mchung
parents:
36517
diff
changeset
|
81 |
-XaddExports:java.base/jdk.internal.org.objectweb.asm.util=ALL-UNNAMED |
36517 | 82 |
else |
83 |
NASGEN_OPTIONS := \ |
|
84 |
-Xbootclasspath/p:$(BUILDTOOLS_OUTPUTDIR)/nasgen_classes |
|
85 |
endif |
|
86 |
||
16198 | 87 |
# Copy classes to final classes dir and run nasgen to modify classes in jdk.nashorn.internal.objects package |
36517 | 88 |
$(NASGEN_RUN_FILE): $(BUILD_NASGEN) $(jdk.scripting.nashorn) |
16198 | 89 |
$(ECHO) Running nasgen |
90 |
$(MKDIR) -p $(@D) |
|
91 |
$(RM) -rf $(@D)/jdk $(@D)/netscape |
|
36517 | 92 |
$(CP) -R -p $(SUPPORT_OUTPUTDIR)/special_classes/jdk.scripting.nashorn/* $(@D)/ |
93 |
$(JAVA) $(NASGEN_OPTIONS) \ |
|
20576 | 94 |
jdk.nashorn.internal.tools.nasgen.Main $(@D) jdk.nashorn.internal.objects $(@D) |
16198 | 95 |
$(TOUCH) $@ |
96 |
||
97 |
# Version file needs to be processed with version numbers |
|
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
98 |
$(eval $(call SetupTextFileProcessing, BUILD_VERSION_FILE, \ |
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
99 |
SOURCE_FILES := $(NASHORN_TOPDIR)/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/resources/version.properties.template, \ |
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
100 |
OUTPUT_FILE := $(JDK_OUTPUTDIR)/modules/jdk.scripting.nashorn/jdk/nashorn/internal/runtime/resources/version.properties, \ |
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
101 |
REPLACEMENTS := \ |
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
102 |
@@VERSION_STRING@@ => $(VERSION_STRING) ; \ |
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
103 |
@@VERSION_SHORT@@ => $(VERSION_SHORT) , \ |
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
104 |
)) |
20576 | 105 |
|
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
106 |
# Version processing needs to happen after nasgen run since nasgen run deletes it |
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
107 |
$(BUILD_VERSION_FILE): $(NASGEN_RUN_FILE) |
16198 | 108 |
|
109 |
||
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
110 |
MANIFEST_ATTRIBUTES := Name: jdk/nashorn/\nImplementation-Title: Oracle Nashorn\nImplementation-Version: $(VERSION_SHORT) |
16198 | 111 |
|
112 |
# Create nashorn.jar from the final classes dir |
|
34039 | 113 |
$(eval $(call SetupJarArchive,BUILD_NASHORN_JAR, \ |
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
114 |
DEPENDENCIES := $(NASGEN_RUN_FILE) $(BUILD_VERSION_FILE), \ |
25865 | 115 |
SRCS := $(NASHORN_CLASSES_DIR), \ |
20576 | 116 |
SUFFIXES := .class .js .properties Factory, \ |
25865 | 117 |
MANIFEST := $(NASHORN_TOPDIR)/src/jdk.scripting.nashorn/share/classes/META-INF/MANIFEST.MF, \ |
20576 | 118 |
EXTRA_MANIFEST_ATTR := $(MANIFEST_ATTRIBUTES), \ |
119 |
SKIP_METAINF := true, \ |
|
33535 | 120 |
JAR := $(NASHORN_JAR), \ |
121 |
)) |
|
16198 | 122 |
|
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
123 |
compile: $(NASHORN_RUN_FILE) $(BUILD_VERSION_FILE) |
16198 | 124 |
all: $(NASHORN_JAR) |
20576 | 125 |
|
25865 | 126 |
.PHONY: compile all |