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