author | dcubed |
Wed, 20 Jan 2016 14:11:25 -0800 | |
changeset 35534 | 411cbe6b6bd5 |
parent 34101 | a1db3b482137 |
child 35366 | 394a28cc1032 |
permissions | -rw-r--r-- |
25854 | 1 |
# |
28359
3a02fb1e9144
8067099: Add deprecation lint warning to build of jdk repository
darcy
parents:
27602
diff
changeset
|
2 |
# Copyright (c) 2011, 2015, 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 |
||
29 |
include JavaCompilation.gmk |
|
30 |
||
31 |
DISABLE_WARNINGS := -Xlint:all,-deprecation,-unchecked,-rawtypes,-cast,-serial,-dep-ann,-static,-fallthrough,-try,-varargs,-empty,-finally |
|
32 |
||
28359
3a02fb1e9144
8067099: Add deprecation lint warning to build of jdk repository
darcy
parents:
27602
diff
changeset
|
33 |
# If warnings needs to be non-fatal for testing purposes use a command like: |
25854 | 34 |
# make JAVAC_WARNINGS="-Xlint:all -Xmaxwarns 10000" |
28359
3a02fb1e9144
8067099: Add deprecation lint warning to build of jdk repository
darcy
parents:
27602
diff
changeset
|
35 |
JAVAC_WARNINGS := -Xlint:all -Werror |
25854 | 36 |
|
26548 | 37 |
# The BOOT_JAVAC setup uses the boot jdk compiler to compile the tools |
38 |
# and the interim javac, to be run by the boot jdk. |
|
39 |
$(eval $(call SetupJavaCompiler,BOOT_JAVAC, \ |
|
40 |
JAVAC := $(JAVAC), \ |
|
33055
3676b99f33cf
8140312: Enable new sjavac server only mode in jdk build
erikj
parents:
32460
diff
changeset
|
41 |
FLAGS := -XDignore.symbol.file=true -g -Xlint:all$(COMMA)-deprecation -Werror, \ |
3676b99f33cf
8140312: Enable new sjavac server only mode in jdk build
erikj
parents:
32460
diff
changeset
|
42 |
DISABLE_SJAVAC := true, \ |
3676b99f33cf
8140312: Enable new sjavac server only mode in jdk build
erikj
parents:
32460
diff
changeset
|
43 |
)) |
26548 | 44 |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
26548
diff
changeset
|
45 |
# 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
|
46 |
# 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
|
47 |
# purpose must be built with -target PREVIOUS for bootstrapping purposes, which |
25854 | 48 |
# requires restricting to language level and api of previous JDK. |
49 |
# |
|
50 |
# The generate old bytecode javac setup uses the new compiler to compile for the |
|
51 |
# boot jdk to generate tools that need to be run with the boot jdk. |
|
52 |
# Thus we force the target bytecode to the previous JDK version. |
|
27560 | 53 |
# Add -Xlint:-options to avoid the warning about not setting -bootclasspath. Since |
54 |
# it's running on the boot jdk, the default bootclasspath is correct. |
|
25854 | 55 |
$(eval $(call SetupJavaCompiler,GENERATE_OLDBYTECODE, \ |
56 |
JVM := $(JAVA_SMALL), \ |
|
57 |
JAVAC := $(NEW_JAVAC), \ |
|
27560 | 58 |
FLAGS := $(BOOT_JDK_SOURCETARGET) -XDignore.symbol.file=true \ |
59 |
$(DISABLE_WARNINGS) -Xlint:-options, \ |
|
25854 | 60 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
61 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
62 |
||
63 |
# The generate new bytecode javac setup uses the new compiler to compile for the |
|
64 |
# new jdk. This new bytecode might only be possible to run using the new jvm. |
|
65 |
$(eval $(call SetupJavaCompiler,GENERATE_JDKBYTECODE, \ |
|
34101
a1db3b482137
8143296: javac-server/sjavac not compatible with LogFailures on Windows
erikj
parents:
33055
diff
changeset
|
66 |
JVM := $(JAVA_JAVAC), \ |
25854 | 67 |
JAVAC := $(NEW_JAVAC), \ |
68 |
FLAGS := -source 9 -target 9 \ |
|
27560 | 69 |
-encoding ascii -XDignore.symbol.file=true $(JAVAC_WARNINGS), \ |
25854 | 70 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
71 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
72 |
||
73 |
# The generate new bytecode javac setup uses the new compiler to compile for the |
|
74 |
# new jdk. This new bytecode might only be possible to run using the new jvm. |
|
75 |
$(eval $(call SetupJavaCompiler,GENERATE_JDKBYTECODE_NOWARNINGS, \ |
|
34101
a1db3b482137
8143296: javac-server/sjavac not compatible with LogFailures on Windows
erikj
parents:
33055
diff
changeset
|
76 |
JVM := $(JAVA_JAVAC), \ |
25854 | 77 |
JAVAC := $(NEW_JAVAC), \ |
78 |
FLAGS := -source 9 -target 9 \ |
|
27560 | 79 |
-encoding ascii -XDignore.symbol.file=true $(DISABLE_WARNINGS), \ |
25854 | 80 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
81 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
82 |
||
32460
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
28359
diff
changeset
|
83 |
JDK_BOOTCLASSPATH := $(call PathList, \ |
25854 | 84 |
$(filter-out $(JDK_OUTPUTDIR)/modules/_%, $(wildcard $(JDK_OUTPUTDIR)/modules/*))) |
85 |
||
86 |
# After the jdk is built, we want to build demos using only the recently |
|
87 |
# generated jdk classes and nothing else, no jdk source, etc etc. |
|
88 |
# I.e. the rt.jar, but since rt.jar has not yet been generated |
|
89 |
# (it will be in "make images") therefore we use classes instead. |
|
90 |
$(eval $(call SetupJavaCompiler,GENERATE_USINGJDKBYTECODE, \ |
|
91 |
JVM := $(JAVA_SMALL), \ |
|
92 |
JAVAC := $(NEW_JAVAC), \ |
|
32460
9e9bffb3029a
8065912: Better handling of classpath in build-infra
ihse
parents:
28359
diff
changeset
|
93 |
FLAGS := -bootclasspath $(JDK_BOOTCLASSPATH) $(DISABLE_WARNINGS), \ |
25854 | 94 |
SERVER_DIR := $(SJAVAC_SERVER_DIR), \ |
95 |
SERVER_JVM := $(SJAVAC_SERVER_JAVA))) |
|
96 |
||
97 |
endif # _SETUP_GMK |