author | alundblad |
Fri, 29 Aug 2014 14:58:35 +0200 | |
changeset 26275 | d2ca1fed21a9 |
parent 25865 | d38d876f1654 |
child 26892 | 97093836f3b7 |
permissions | -rw-r--r-- |
16198 | 1 |
# |
2 |
# Copyright (c) 2010, 2013, 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 |
# This must be the first rule |
|
27 |
default: all |
|
28 |
||
29 |
-include $(SPEC) |
|
30 |
include MakeBase.gmk |
|
31 |
include JavaCompilation.gmk |
|
32 |
||
25865 | 33 |
JDK_CLASSES := $(subst $(SPACE),$(PATH_SEP),$(strip $(addprefix $(JDK_OUTPUTDIR)/modules/, \ |
34 |
java.base java.logging java.scripting))) |
|
16198 | 35 |
|
36 |
NASHORN_JAR := $(NASHORN_DIST)/nashorn.jar |
|
16200 | 37 |
NASHORN_VERSION := $(JDK_VERSION) |
38 |
NASHORN_FULL_VERSION := $(FULL_VERSION) |
|
39 |
||
40 |
ifdef MILESTONE |
|
20576 | 41 |
ifeq ($(MILESTONE), internal) |
16200 | 42 |
NASHORN_VERSION = $(FULL_VERSION) |
43 |
endif |
|
44 |
endif |
|
16198 | 45 |
|
46 |
# Need to use source and target 7 for nasgen to work. |
|
20576 | 47 |
$(eval $(call SetupJavaCompiler,GENERATE_NEWBYTECODE_DEBUG, \ |
48 |
JVM := $(JAVA), \ |
|
49 |
JAVAC := $(NEW_JAVAC), \ |
|
25865 | 50 |
FLAGS := -g -source 7 -target 7 -bootclasspath "$(JDK_CLASSES)", \ |
20576 | 51 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
52 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
16198 | 53 |
|
54 |
# Build nashorn into intermediate directory |
|
20576 | 55 |
$(eval $(call SetupJavaCompilation,BUILD_NASHORN, \ |
56 |
SETUP := GENERATE_NEWBYTECODE_DEBUG, \ |
|
25865 | 57 |
SRC := $(NASHORN_TOPDIR)/src/jdk.scripting.nashorn/share/classes, \ |
20576 | 58 |
COPY := .properties .js, \ |
59 |
BIN := $(NASHORN_OUTPUTDIR)/nashorn_classes)) |
|
16198 | 60 |
|
16266
5ddfc1208ef3
8008950: jdk8/tl failing with SetupJavaCompilation BUILD_NASGEN contains missing directory -c on Windows
alanb
parents:
16265
diff
changeset
|
61 |
NASGEN_SRC := $(NASHORN_TOPDIR)/buildtools/nasgen/src |
25865 | 62 |
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
|
63 |
|
16198 | 64 |
# Build nasgen |
20576 | 65 |
$(eval $(call SetupJavaCompilation,BUILD_NASGEN, \ |
66 |
SETUP := GENERATE_NEWBYTECODE_DEBUG, \ |
|
67 |
SRC := $(NASGEN_SRC) $(ASM_SRC), \ |
|
68 |
BIN := $(NASHORN_OUTPUTDIR)/nasgen_classes, \ |
|
69 |
ADD_JAVAC_FLAGS := -cp $(NASHORN_OUTPUTDIR)/nashorn_classes)) |
|
16198 | 70 |
|
71 |
# Nasgen needs nashorn classes |
|
72 |
$(BUILD_NASGEN): $(BUILD_NASHORN) |
|
73 |
||
25865 | 74 |
NASHORN_CLASSES_DIR := $(JDK_OUTPUTDIR)/modules/jdk.scripting.nashorn |
75 |
NASGEN_RUN_FILE := $(NASHORN_CLASSES_DIR)/_the.nasgen.run |
|
76 |
||
16198 | 77 |
# Copy classes to final classes dir and run nasgen to modify classes in jdk.nashorn.internal.objects package |
25865 | 78 |
$(NASGEN_RUN_FILE): $(BUILD_NASGEN) |
16198 | 79 |
$(ECHO) Running nasgen |
80 |
$(MKDIR) -p $(@D) |
|
81 |
$(RM) -rf $(@D)/jdk $(@D)/netscape |
|
82 |
$(CP) -R -p $(NASHORN_OUTPUTDIR)/nashorn_classes/* $(@D)/ |
|
16265
bd8e2707574a
8009021: nasgen should be run on boot jdk rather than currenly built jdk
sundar
parents:
16261
diff
changeset
|
83 |
$(FIXPATH) $(JAVA) \ |
23367
20c3810174dc
8033951: nasgen needs the newly build nasgen and nashorn classes in the bootclasspath
simonis
parents:
21865
diff
changeset
|
84 |
-Xbootclasspath/p:"$(NASHORN_OUTPUTDIR)/nasgen_classes$(PATH_SEP)$(NASHORN_OUTPUTDIR)/nashorn_classes" \ |
20576 | 85 |
jdk.nashorn.internal.tools.nasgen.Main $(@D) jdk.nashorn.internal.objects $(@D) |
16198 | 86 |
$(TOUCH) $@ |
87 |
||
88 |
# Version file needs to be processed with version numbers |
|
25865 | 89 |
VERSION_FILE := $(JDK_OUTPUTDIR)/modules/jdk.scripting.nashorn/jdk/nashorn/internal/runtime/resources/version.properties |
90 |
VERSION_SRC := $(NASHORN_TOPDIR)/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/resources/version.properties-template |
|
20576 | 91 |
|
16198 | 92 |
# Needs to happen after nasgen run since nasgen run deletes it |
25865 | 93 |
$(VERSION_FILE): $(NASGEN_RUN_FILE) |
94 |
$(VERSION_FILE): $(VERSION_SRC) |
|
16198 | 95 |
$(ECHO) Creating version.properties |
96 |
$(MKDIR) -p $(@D) |
|
16200 | 97 |
$(CAT) $< | $(SED) -e 's/$$(FULL_VERSION)/$(NASHORN_FULL_VERSION)/g' \ |
20576 | 98 |
-e 's/$$(RELEASE)/$(NASHORN_VERSION)/g' \ |
99 |
-e '/^#.*$$/d' -e '/^$$/d' > $@ |
|
16198 | 100 |
|
101 |
||
20576 | 102 |
MANIFEST_ATTRIBUTES := Name: jdk/nashorn/\nImplementation-Title: Oracle Nashorn\nImplementation-Version: $(NASHORN_FULL_VERSION) |
16198 | 103 |
|
104 |
# Create nashorn.jar from the final classes dir |
|
20576 | 105 |
$(eval $(call SetupArchive,BUILD_NASHORN_JAR, \ |
25865 | 106 |
$(NASGEN_RUN_FILE) \ |
20576 | 107 |
$(VERSION_FILE), \ |
25865 | 108 |
SRCS := $(NASHORN_CLASSES_DIR), \ |
20576 | 109 |
SUFFIXES := .class .js .properties Factory, \ |
25865 | 110 |
MANIFEST := $(NASHORN_TOPDIR)/src/jdk.scripting.nashorn/share/classes/META-INF/MANIFEST.MF, \ |
20576 | 111 |
EXTRA_MANIFEST_ATTR := $(MANIFEST_ATTRIBUTES), \ |
112 |
SKIP_METAINF := true, \ |
|
113 |
JAR := $(NASHORN_JAR))) |
|
16198 | 114 |
|
25865 | 115 |
compile: $(NASHORN_RUN_FILE) $(VERSION_FILE) |
16198 | 116 |
all: $(NASHORN_JAR) |
20576 | 117 |
|
25865 | 118 |
.PHONY: compile all |