author | iris |
Mon, 13 Jul 2015 13:24:17 -0700 | |
changeset 34024 | 00d015c3e298 |
parent 31486 | 11a170ff3549 |
parent 34020 | d9b12d08137b |
child 34029 | d1868a6ad5f8 |
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 |
|
31 |
include JavaCompilation.gmk |
|
26892
97093836f3b7
8059135: New Nasgen dependencies to Nashorn breaks the JDK 9 build - bootstrapping problem?
erikj
parents:
25865
diff
changeset
|
32 |
include SetupJavaCompilers.gmk |
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
33 |
include TextFileProcessing.gmk |
16198 | 34 |
|
25865 | 35 |
JDK_CLASSES := $(subst $(SPACE),$(PATH_SEP),$(strip $(addprefix $(JDK_OUTPUTDIR)/modules/, \ |
36 |
java.base java.logging java.scripting))) |
|
16198 | 37 |
|
27571 | 38 |
NASHORN_JAR := $(IMAGES_OUTPUTDIR)/nashorn.jar |
16198 | 39 |
|
29134
7242c750aa76
8073560: Update BuildNashorn.gmk to require source/target 8 for jdk9 build
attila
parents:
27571
diff
changeset
|
40 |
# Need to use source and target 8 for nasgen to work. |
20576 | 41 |
$(eval $(call SetupJavaCompiler,GENERATE_NEWBYTECODE_DEBUG, \ |
42 |
JVM := $(JAVA), \ |
|
43 |
JAVAC := $(NEW_JAVAC), \ |
|
29134
7242c750aa76
8073560: Update BuildNashorn.gmk to require source/target 8 for jdk9 build
attila
parents:
27571
diff
changeset
|
44 |
FLAGS := -g -source 8 -target 8 -bootclasspath "$(JDK_CLASSES)", \ |
20576 | 45 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
46 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
16198 | 47 |
|
48 |
# Build nashorn into intermediate directory |
|
20576 | 49 |
$(eval $(call SetupJavaCompilation,BUILD_NASHORN, \ |
50 |
SETUP := GENERATE_NEWBYTECODE_DEBUG, \ |
|
25865 | 51 |
SRC := $(NASHORN_TOPDIR)/src/jdk.scripting.nashorn/share/classes, \ |
27571 | 52 |
EXCLUDE_FILES := META-INF/MANIFEST.MF, \ |
20576 | 53 |
COPY := .properties .js, \ |
31486 | 54 |
BIN := $(SUPPORT_OUTPUTDIR)/special_classes/jdk.scripting.nashorn/classes)) |
16198 | 55 |
|
16266
5ddfc1208ef3
8008950: jdk8/tl failing with SetupJavaCompilation BUILD_NASGEN contains missing directory -c on Windows
alanb
parents:
16265
diff
changeset
|
56 |
NASGEN_SRC := $(NASHORN_TOPDIR)/buildtools/nasgen/src |
25865 | 57 |
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
|
58 |
|
16198 | 59 |
# Build nasgen |
20576 | 60 |
$(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
|
61 |
SETUP := GENERATE_OLDBYTECODE, \ |
20576 | 62 |
SRC := $(NASGEN_SRC) $(ASM_SRC), \ |
27571 | 63 |
BIN := $(BUILDTOOLS_OUTPUTDIR)/nasgen_classes, \ |
31486 | 64 |
ADD_JAVAC_FLAGS := -Xbootclasspath/p:"$(SUPPORT_OUTPUTDIR)/special_classes/jdk.scripting.nashorn/classes")) |
16198 | 65 |
|
66 |
# Nasgen needs nashorn classes |
|
67 |
$(BUILD_NASGEN): $(BUILD_NASHORN) |
|
68 |
||
25865 | 69 |
NASHORN_CLASSES_DIR := $(JDK_OUTPUTDIR)/modules/jdk.scripting.nashorn |
70 |
NASGEN_RUN_FILE := $(NASHORN_CLASSES_DIR)/_the.nasgen.run |
|
71 |
||
16198 | 72 |
# Copy classes to final classes dir and run nasgen to modify classes in jdk.nashorn.internal.objects package |
25865 | 73 |
$(NASGEN_RUN_FILE): $(BUILD_NASGEN) |
16198 | 74 |
$(ECHO) Running nasgen |
75 |
$(MKDIR) -p $(@D) |
|
76 |
$(RM) -rf $(@D)/jdk $(@D)/netscape |
|
31486 | 77 |
$(CP) -R -p $(SUPPORT_OUTPUTDIR)/special_classes/jdk.scripting.nashorn/classes/* $(@D)/ |
16265
bd8e2707574a
8009021: nasgen should be run on boot jdk rather than currenly built jdk
sundar
parents:
16261
diff
changeset
|
78 |
$(FIXPATH) $(JAVA) \ |
31486 | 79 |
-Xbootclasspath/p:"$(BUILDTOOLS_OUTPUTDIR)/nasgen_classes$(PATH_SEP)$(SUPPORT_OUTPUTDIR)/special_classes/jdk.scripting.nashorn/classes" \ |
20576 | 80 |
jdk.nashorn.internal.tools.nasgen.Main $(@D) jdk.nashorn.internal.objects $(@D) |
16198 | 81 |
$(TOUCH) $@ |
82 |
||
83 |
# 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
|
84 |
$(eval $(call SetupTextFileProcessing, BUILD_VERSION_FILE, \ |
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
85 |
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
|
86 |
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
|
87 |
REPLACEMENTS := \ |
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
88 |
@@VERSION_STRING@@ => $(VERSION_STRING) ; \ |
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
89 |
@@VERSION_SHORT@@ => $(VERSION_SHORT) , \ |
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
90 |
)) |
20576 | 91 |
|
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
92 |
# 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
|
93 |
$(BUILD_VERSION_FILE): $(NASGEN_RUN_FILE) |
16198 | 94 |
|
95 |
||
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
96 |
MANIFEST_ATTRIBUTES := Name: jdk/nashorn/\nImplementation-Title: Oracle Nashorn\nImplementation-Version: $(VERSION_SHORT) |
16198 | 97 |
|
98 |
# Create nashorn.jar from the final classes dir |
|
20576 | 99 |
$(eval $(call SetupArchive,BUILD_NASHORN_JAR, \ |
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
100 |
DEPENDENCIES := $(NASGEN_RUN_FILE) $(BUILD_VERSION_FILE), \ |
25865 | 101 |
SRCS := $(NASHORN_CLASSES_DIR), \ |
20576 | 102 |
SUFFIXES := .class .js .properties Factory, \ |
25865 | 103 |
MANIFEST := $(NASHORN_TOPDIR)/src/jdk.scripting.nashorn/share/classes/META-INF/MANIFEST.MF, \ |
20576 | 104 |
EXTRA_MANIFEST_ATTR := $(MANIFEST_ATTRIBUTES), \ |
105 |
SKIP_METAINF := true, \ |
|
106 |
JAR := $(NASHORN_JAR))) |
|
16198 | 107 |
|
34020
d9b12d08137b
8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents:
29415
diff
changeset
|
108 |
compile: $(NASHORN_RUN_FILE) $(BUILD_VERSION_FILE) |
16198 | 109 |
all: $(NASHORN_JAR) |
20576 | 110 |
|
25865 | 111 |
.PHONY: compile all |