author | ykantser |
Mon, 07 Apr 2014 16:13:43 +0200 | |
changeset 23726 | 2f18b12acbdf |
parent 23367 | 20c3810174dc |
child 25865 | d38d876f1654 |
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 |
||
33 |
JDK_CLASSES := $(JDK_OUTPUTDIR)/classes |
|
34 |
||
35 |
NASHORN_JAR := $(NASHORN_DIST)/nashorn.jar |
|
16200 | 36 |
NASHORN_VERSION := $(JDK_VERSION) |
37 |
NASHORN_FULL_VERSION := $(FULL_VERSION) |
|
38 |
||
39 |
ifdef MILESTONE |
|
20576 | 40 |
ifeq ($(MILESTONE), internal) |
16200 | 41 |
NASHORN_VERSION = $(FULL_VERSION) |
42 |
endif |
|
43 |
endif |
|
16198 | 44 |
|
45 |
# Need to use source and target 7 for nasgen to work. |
|
20576 | 46 |
$(eval $(call SetupJavaCompiler,GENERATE_NEWBYTECODE_DEBUG, \ |
47 |
JVM := $(JAVA), \ |
|
48 |
JAVAC := $(NEW_JAVAC), \ |
|
49 |
FLAGS := -g -source 7 -target 7 -bootclasspath $(JDK_CLASSES), \ |
|
50 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
|
51 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
16198 | 52 |
|
53 |
# Build nashorn into intermediate directory |
|
20576 | 54 |
$(eval $(call SetupJavaCompilation,BUILD_NASHORN, \ |
55 |
SETUP := GENERATE_NEWBYTECODE_DEBUG, \ |
|
56 |
SRC := $(NASHORN_TOPDIR)/src, \ |
|
57 |
COPY := .properties .js, \ |
|
58 |
BIN := $(NASHORN_OUTPUTDIR)/nashorn_classes)) |
|
16198 | 59 |
|
16266
5ddfc1208ef3
8008950: jdk8/tl failing with SetupJavaCompilation BUILD_NASGEN contains missing directory -c on Windows
alanb
parents:
16265
diff
changeset
|
60 |
NASGEN_SRC := $(NASHORN_TOPDIR)/buildtools/nasgen/src |
5ddfc1208ef3
8008950: jdk8/tl failing with SetupJavaCompilation BUILD_NASGEN contains missing directory -c on Windows
alanb
parents:
16265
diff
changeset
|
61 |
ASM_SRC := $(JDK_TOPDIR)/src/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
|
62 |
|
16198 | 63 |
# Build nasgen |
20576 | 64 |
$(eval $(call SetupJavaCompilation,BUILD_NASGEN, \ |
65 |
SETUP := GENERATE_NEWBYTECODE_DEBUG, \ |
|
66 |
SRC := $(NASGEN_SRC) $(ASM_SRC), \ |
|
67 |
BIN := $(NASHORN_OUTPUTDIR)/nasgen_classes, \ |
|
68 |
ADD_JAVAC_FLAGS := -cp $(NASHORN_OUTPUTDIR)/nashorn_classes)) |
|
16198 | 69 |
|
70 |
# Nasgen needs nashorn classes |
|
71 |
$(BUILD_NASGEN): $(BUILD_NASHORN) |
|
72 |
||
73 |
# Copy classes to final classes dir and run nasgen to modify classes in jdk.nashorn.internal.objects package |
|
74 |
$(NASHORN_OUTPUTDIR)/classes/_the.nasgen.run: $(BUILD_NASGEN) |
|
75 |
$(ECHO) Running nasgen |
|
76 |
$(MKDIR) -p $(@D) |
|
77 |
$(RM) -rf $(@D)/jdk $(@D)/netscape |
|
78 |
$(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
|
79 |
$(FIXPATH) $(JAVA) \ |
23367
20c3810174dc
8033951: nasgen needs the newly build nasgen and nashorn classes in the bootclasspath
simonis
parents:
21865
diff
changeset
|
80 |
-Xbootclasspath/p:"$(NASHORN_OUTPUTDIR)/nasgen_classes$(PATH_SEP)$(NASHORN_OUTPUTDIR)/nashorn_classes" \ |
20576 | 81 |
jdk.nashorn.internal.tools.nasgen.Main $(@D) jdk.nashorn.internal.objects $(@D) |
16198 | 82 |
$(TOUCH) $@ |
83 |
||
84 |
# Version file needs to be processed with version numbers |
|
85 |
VERSION_FILE := $(NASHORN_OUTPUTDIR)/classes/jdk/nashorn/internal/runtime/resources/version.properties |
|
20576 | 86 |
|
16198 | 87 |
# Needs to happen after nasgen run since nasgen run deletes it |
88 |
$(VERSION_FILE): $(NASHORN_OUTPUTDIR)/classes/_the.nasgen.run |
|
89 |
$(VERSION_FILE): $(NASHORN_TOPDIR)/src/jdk/nashorn/internal/runtime/resources/version.properties-template |
|
90 |
$(ECHO) Creating version.properties |
|
91 |
$(MKDIR) -p $(@D) |
|
16200 | 92 |
$(CAT) $< | $(SED) -e 's/$$(FULL_VERSION)/$(NASHORN_FULL_VERSION)/g' \ |
20576 | 93 |
-e 's/$$(RELEASE)/$(NASHORN_VERSION)/g' \ |
94 |
-e '/^#.*$$/d' -e '/^$$/d' > $@ |
|
16198 | 95 |
|
96 |
||
20576 | 97 |
MANIFEST_ATTRIBUTES := Name: jdk/nashorn/\nImplementation-Title: Oracle Nashorn\nImplementation-Version: $(NASHORN_FULL_VERSION) |
16198 | 98 |
|
99 |
# Create nashorn.jar from the final classes dir |
|
20576 | 100 |
$(eval $(call SetupArchive,BUILD_NASHORN_JAR, \ |
16198 | 101 |
$(NASHORN_OUTPUTDIR)/classes/_the.nasgen.run \ |
20576 | 102 |
$(VERSION_FILE), \ |
103 |
SRCS := $(NASHORN_OUTPUTDIR)/classes, \ |
|
104 |
SUFFIXES := .class .js .properties Factory, \ |
|
105 |
MANIFEST := $(NASHORN_TOPDIR)/src/META-INF/MANIFEST.MF, \ |
|
106 |
EXTRA_MANIFEST_ATTR := $(MANIFEST_ATTRIBUTES), \ |
|
107 |
SKIP_METAINF := true, \ |
|
108 |
JAR := $(NASHORN_JAR))) |
|
16198 | 109 |
|
110 |
all: $(NASHORN_JAR) |
|
20576 | 111 |
|
16198 | 112 |
.PHONY: all |