blob: 8012e547b552b5ab0a2afa5d06e3794dc1fcd75c [file] [log] [blame]
ohair92de5662012-04-10 08:22:03 -07001#
2# Copyright (c) 2011, 2012, 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
ohair92de5662012-04-10 08:22:03 -070026DISABLE_WARNINGS:=-Xlint:all,-deprecation,-unchecked,-rawtypes,-cast,-serial,-dep-ann,-static,-fallthrough,-try,-varargs,-empty,-finally
27
28# The generate old bytecode javac setup uses the new compiler to compile for the
29# boot jdk to generate tools that need to be run with the boot jdk.
erikje78df742012-06-07 20:40:50 -070030# Thus we force the target bytecode to 7.
ohair92de5662012-04-10 08:22:03 -070031$(eval $(call SetupJavaCompiler,GENERATE_OLDBYTECODE,\
32 JVM:=$(JAVA),\
ohrstrom6cf9bfb2013-01-31 14:03:42 +010033 JAVAC:=$(NEW_JAVAC),\
ohair92de5662012-04-10 08:22:03 -070034 FLAGS:=-source 7 -target 7 -bootclasspath $(BOOT_RTJAR) $(DISABLE_WARNINGS),\
ohair46fcac92012-09-18 11:29:24 -070035 SERVER_DIR:=$(SJAVAC_SERVER_DIR),\
36 SERVER_JVM:=$(SJAVAC_SERVER_JAVA)))
ohair92de5662012-04-10 08:22:03 -070037
38# The generate new bytecode javac setup uses the new compiler to compile for the
39# new jdk. This new bytecode might only be possible to run using the new jvm.
40$(eval $(call SetupJavaCompiler,GENERATE_JDKBYTECODE,\
41 JVM:=$(JAVA),\
ohrstrom6cf9bfb2013-01-31 14:03:42 +010042 JAVAC:=$(NEW_JAVAC),\
erikj41f82602013-06-11 13:26:15 +020043 FLAGS:=-bootclasspath $(JDK_OUTPUTDIR)/classes -source 8 -target 8 \
44 -encoding ascii -XDignore.symbol.file=true $(DISABLE_WARNINGS) \
45 $(GENERATE_JDKBYTECODE_EXTRA_FLAGS),\
ohair46fcac92012-09-18 11:29:24 -070046 SERVER_DIR:=$(SJAVAC_SERVER_DIR),\
47 SERVER_JVM:=$(SJAVAC_SERVER_JAVA)))
ohair92de5662012-04-10 08:22:03 -070048
49# After the jdk is built, we want to build demos using only the recently
50# generated jdk classes and nothing else, no jdk source, etc etc.
51# I.e. the rt.jar, but since rt.jar has not yet been generated
52# (it will be in "make images") therefore we use classes instead.
53$(eval $(call SetupJavaCompiler,GENERATE_USINGJDKBYTECODE,\
54 JVM:=$(JAVA),\
ohrstrom6cf9bfb2013-01-31 14:03:42 +010055 JAVAC:=$(NEW_JAVAC),\
ohair46fcac92012-09-18 11:29:24 -070056 FLAGS:=-bootclasspath $(JDK_OUTPUTDIR)/classes $(DISABLE_WARNINGS),\
57 SERVER_DIR:=$(SJAVAC_SERVER_DIR),\
58 SERVER_JVM:=$(SJAVAC_SERVER_JAVA)))