0N/A#
169N/A# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
115N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
115N/A# by Oracle in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
115N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
115N/A# or visit www.oracle.com if you need additional information or have any
115N/A# questions.
0N/A#
0N/A
0N/A# This is the JDK used to build and run the bootstrap version of javac.
0N/A# The bootstrap javac is used to compile both boostrap versions of the
0N/A# other tools, and product versions of all the tools.
0N/A# Override this path as needed, either on the command line or in
0N/A# one of the standard user build.properties files (see build.xml)
84N/Ajavac.jar=${bootstrap.dir}/lib/javac.jar
0N/A
94N/A# The tools.jar is needed in the classpath to compile these sources
94N/Ajdk.home=${java.home}/..
94N/Atools.jar=${jdk.home}/lib/tools.jar
94N/A
0N/A# options for the <javac> tasks used to compile the tools
72N/Ajavac.source = 7
72N/Ajavac.target = 7
0N/Ajavac.debug = true
0N/Ajavac.no.jdk.warnings = -XDignore.symbol.file=true
0N/A# set the following to -version to verify the versions of javac being used
0N/Ajavac.version.opt =
0N/A# in time, there should be no exceptions to -Xlint:all
84N/A#javac.lint.opts = -Xlint:all,-unchecked,-deprecation,-fallthrough,-cast,-serial
84N/Ajavac.lint.opts=
0N/A
0N/A# JVM memory size
84N/Ajavac.memoryInitialSize = 256m
84N/Ajavac.memoryMaximumSize = 512m
0N/A
0N/A#------------------------------------------------------------
84N/A
84N/A# Root of output directories
84N/Aoutput.dir=.
84N/A
84N/A# Built files
84N/Abuild.dir=${output.dir}/build
84N/Abuild.classes.dir=${build.dir}/classes
84N/A
84N/A# Distributed results
84N/Adist.dir=${output.dir}/dist
84N/Adist.lib.dir=${dist.dir}/lib
84N/Adist.classes.jar=${dist.lib.dir}/classes.jar
84N/Adist.src.zip=${dist.lib.dir}/src.zip
84N/A
84N/A# Sanity information
84N/Asanity.info= Sanity Settings:${line.separator}\
84N/A ant.home=${ant.home}${line.separator}\
84N/A ant.version=${ant.version}${line.separator}\
84N/A ant.java.version=${ant.java.version}${line.separator}\
84N/A java.home=${java.home}${line.separator}\
84N/A java.version=${java.version}${line.separator}\
84N/A os.name=${os.name}${line.separator}\
84N/A os.arch=${os.arch}${line.separator}\
84N/A os.version=${os.version}${line.separator}\
84N/A bootstrap.dir=${bootstrap.dir}${line.separator}\
84N/A javac.jar=${javac.jar}${line.separator}\
84N/A javac.memoryInitialSize=${javac.memoryInitialSize}${line.separator}\
84N/A javac.memoryMaximumSize=${javac.memoryMaximumSize}${line.separator}\
84N/A javac.source=${javac.source}${line.separator}\
84N/A javac.debug=${javac.debug}${line.separator}\
84N/A javac.target=${javac.target}${line.separator}\
84N/A javac.version.opt=${javac.version.opt}${line.separator}\
84N/A javac.lint.opts=${javac.lint.opts}${line.separator}\
84N/A javac.no.jdk.warnings=${javac.no.jdk.warnings}${line.separator}\
84N/A output.dir=${output.dir}${line.separator}\
84N/A build.dir=${build.dir}${line.separator}\
84N/A dist.dir=${dist.dir}${line.separator}\
123N/A${line.separator}
123N/A
84N/A#------------------------------------------------------------