author | coleenp |
Fri, 09 Mar 2018 12:03:20 -0500 | |
changeset 49366 | f95ef5511e1f |
parent 48695 | a7ce228abcd7 |
child 50892 | a5557f24b4d4 |
permissions | -rw-r--r-- |
25854 | 1 |
# |
47364 | 2 |
# Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. |
25854 | 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 |
ifndef _SETUP_GMK |
|
27 |
_SETUP_GMK := 1 |
|
28 |
||
48695 | 29 |
# Include custom extension hook |
30 |
$(eval $(call IncludeCustomExtension, common/SetupJavaCompilers.gmk)) |
|
31 |
||
25854 | 32 |
include JavaCompilation.gmk |
33 |
||
48695 | 34 |
DISABLE_WARNINGS ?= -Xlint:all,-deprecation,-removal,-unchecked,-rawtypes,-cast,-serial,-dep-ann,-static,-fallthrough,-try,-varargs,-empty,-finally |
25854 | 35 |
|
28359
3a02fb1e9144
8067099: Add deprecation lint warning to build of jdk repository
darcy
parents:
27602
diff
changeset
|
36 |
# If warnings needs to be non-fatal for testing purposes use a command like: |
25854 | 37 |
# make JAVAC_WARNINGS="-Xlint:all -Xmaxwarns 10000" |
48695 | 38 |
JAVAC_WARNINGS ?= -Xlint:all -Werror |
25854 | 39 |
|
26548 | 40 |
# The BOOT_JAVAC setup uses the boot jdk compiler to compile the tools |
41 |
# and the interim javac, to be run by the boot jdk. |
|
42 |
$(eval $(call SetupJavaCompiler,BOOT_JAVAC, \ |
|
43 |
JAVAC := $(JAVAC), \ |
|
41172
1de8867db5a3
8166965: Some small java build tools are still running with big JVM configuration
erikj
parents:
40611
diff
changeset
|
44 |
FLAGS := \ |
1de8867db5a3
8166965: Some small java build tools are still running with big JVM configuration
erikj
parents:
40611
diff
changeset
|
45 |
$(JAVA_TOOL_FLAGS_SMALL) \ |
1de8867db5a3
8166965: Some small java build tools are still running with big JVM configuration
erikj
parents:
40611
diff
changeset
|
46 |
$(BOOT_JDK_SOURCETARGET) \ |
1de8867db5a3
8166965: Some small java build tools are still running with big JVM configuration
erikj
parents:
40611
diff
changeset
|
47 |
-XDignore.symbol.file=true -g \ |
36506 | 48 |
-Xlint:all$(COMMA)-deprecation$(COMMA)-options -Werror, \ |
33055
3676b99f33cf
8140312: Enable new sjavac server only mode in jdk build
erikj
parents:
32460
diff
changeset
|
49 |
DISABLE_SJAVAC := true, \ |
3676b99f33cf
8140312: Enable new sjavac server only mode in jdk build
erikj
parents:
32460
diff
changeset
|
50 |
)) |
26548 | 51 |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
26548
diff
changeset
|
52 |
# Any java code executed during a JDK build to build other parts of the JDK must be |
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
26548
diff
changeset
|
53 |
# executed by the bootstrap JDK (probably with -Xbootclasspath/p: ) and for this |
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
26548
diff
changeset
|
54 |
# purpose must be built with -target PREVIOUS for bootstrapping purposes, which |
25854 | 55 |
# requires restricting to language level and api of previous JDK. |
56 |
# |
|
57 |
# The generate old bytecode javac setup uses the new compiler to compile for the |
|
58 |
# boot jdk to generate tools that need to be run with the boot jdk. |
|
59 |
# Thus we force the target bytecode to the previous JDK version. |
|
27560 | 60 |
# Add -Xlint:-options to avoid the warning about not setting -bootclasspath. Since |
61 |
# it's running on the boot jdk, the default bootclasspath is correct. |
|
25854 | 62 |
$(eval $(call SetupJavaCompiler,GENERATE_OLDBYTECODE, \ |
63 |
JVM := $(JAVA_SMALL), \ |
|
64 |
JAVAC := $(NEW_JAVAC), \ |
|
35366 | 65 |
FLAGS := $(BOOT_JDK_SOURCETARGET) -XDignore.symbol.file=true -XDstringConcat=inline \ |
27560 | 66 |
$(DISABLE_WARNINGS) -Xlint:-options, \ |
25854 | 67 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
68 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
69 |
||
70 |
# The generate new bytecode javac setup uses the new compiler to compile for the |
|
71 |
# new jdk. This new bytecode might only be possible to run using the new jvm. |
|
72 |
$(eval $(call SetupJavaCompiler,GENERATE_JDKBYTECODE, \ |
|
34101
a1db3b482137
8143296: javac-server/sjavac not compatible with LogFailures on Windows
erikj
parents:
33055
diff
changeset
|
73 |
JVM := $(JAVA_JAVAC), \ |
25854 | 74 |
JAVAC := $(NEW_JAVAC), \ |
48343 | 75 |
FLAGS := -source 11 -target 11 --doclint-format html5 \ |
27560 | 76 |
-encoding ascii -XDignore.symbol.file=true $(JAVAC_WARNINGS), \ |
25854 | 77 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
78 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
79 |
||
80 |
# The generate new bytecode javac setup uses the new compiler to compile for the |
|
81 |
# new jdk. This new bytecode might only be possible to run using the new jvm. |
|
82 |
$(eval $(call SetupJavaCompiler,GENERATE_JDKBYTECODE_NOWARNINGS, \ |
|
34101
a1db3b482137
8143296: javac-server/sjavac not compatible with LogFailures on Windows
erikj
parents:
33055
diff
changeset
|
83 |
JVM := $(JAVA_JAVAC), \ |
25854 | 84 |
JAVAC := $(NEW_JAVAC), \ |
48343 | 85 |
FLAGS := -source 11 -target 11 \ |
27560 | 86 |
-encoding ascii -XDignore.symbol.file=true $(DISABLE_WARNINGS), \ |
25854 | 87 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
88 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
89 |
||
90 |
# After the jdk is built, we want to build demos using only the recently |
|
91 |
# generated jdk classes and nothing else, no jdk source, etc etc. |
|
92 |
# I.e. the rt.jar, but since rt.jar has not yet been generated |
|
93 |
# (it will be in "make images") therefore we use classes instead. |
|
94 |
$(eval $(call SetupJavaCompiler,GENERATE_USINGJDKBYTECODE, \ |
|
95 |
JVM := $(JAVA_SMALL), \ |
|
96 |
JAVAC := $(NEW_JAVAC), \ |
|
40611
53ba2f7abd45
8160851: Remove old launcher module-related options
mchung
parents:
40241
diff
changeset
|
97 |
FLAGS := --upgrade-module-path $(JDK_OUTPUTDIR)/modules --system none $(DISABLE_WARNINGS), \ |
25854 | 98 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
99 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
100 |
||
47364 | 101 |
# Use boot javac to generate JDK 8 compatible class files explicitly |
102 |
$(eval $(call SetupJavaCompiler,GENERATE_8_BYTECODE, \ |
|
103 |
JAVAC := $(JAVAC), \ |
|
104 |
FLAGS := \ |
|
105 |
$(JAVA_TOOL_FLAGS_SMALL) \ |
|
106 |
--release 8 \ |
|
107 |
-XDignore.symbol.file=true -g \ |
|
108 |
-Xlint:all -Werror, \ |
|
109 |
DISABLE_SJAVAC := true, \ |
|
110 |
)) |
|
111 |
||
25854 | 112 |
endif # _SETUP_GMK |