build.properties

Mon, 14 Sep 2020 16:42:08 +0100

author
andrew
date
Mon, 14 Sep 2020 16:42:08 +0100
changeset 2114
a5b79eebcc1f
parent 282
ff3ad1d8c057
child 759
7ea027fae4d8
permissions
-rw-r--r--

Added tag jdk8u272-b08 for changeset 9d92962b2fe3

duke@1 1 #
katleman@259 2 # Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
duke@1 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 #
duke@1 5 # This code is free software; you can redistribute it and/or modify it
duke@1 6 # under the terms of the GNU General Public License version 2 only, as
ohair@124 7 # published by the Free Software Foundation. Oracle designates this
duke@1 8 # particular file as subject to the "Classpath" exception as provided
ohair@124 9 # by Oracle in the LICENSE file that accompanied this code.
duke@1 10 #
duke@1 11 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 # version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 # accompanied this code).
duke@1 16 #
duke@1 17 # You should have received a copy of the GNU General Public License version
duke@1 18 # 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 #
ohair@124 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@124 22 # or visit www.oracle.com if you need additional information or have any
ohair@124 23 # questions.
duke@1 24 #
duke@1 25
duke@1 26 # This is the JDK used to build and run the bootstrap version of javac.
duke@1 27 # The bootstrap javac is used to compile both boostrap versions of the
duke@1 28 # other tools, and product versions of all the tools.
duke@1 29 # Override this path as needed, either on the command line or in
duke@1 30 # one of the standard user build.properties files (see build.xml)
ohair@88 31 javac.jar=${bootstrap.dir}/lib/javac.jar
duke@1 32
ohair@100 33 # The tools.jar is needed in the classpath to compile these sources
ohair@100 34 jdk.home=${java.home}/..
ohair@100 35 tools.jar=${jdk.home}/lib/tools.jar
ohair@100 36
duke@1 37 # options for the <javac> tasks used to compile the tools
jjg@70 38 javac.source = 7
jjg@70 39 javac.target = 7
duke@1 40 javac.debug = true
duke@1 41 javac.no.jdk.warnings = -XDignore.symbol.file=true
duke@1 42 # set the following to -version to verify the versions of javac being used
duke@1 43 javac.version.opt =
duke@1 44 # in time, there should be no exceptions to -Xlint:all
ohair@88 45 #javac.lint.opts = -Xlint:all,-unchecked,-deprecation,-fallthrough,-cast,-serial
ohair@88 46 javac.lint.opts=
duke@1 47
duke@1 48 # JVM memory size
ohair@88 49 javac.memoryInitialSize = 256m
ohair@88 50 javac.memoryMaximumSize = 512m
duke@1 51
duke@1 52 #------------------------------------------------------------
ohair@88 53
ohair@88 54 # Root of output directories
ohair@88 55 output.dir=.
ohair@88 56
ohair@88 57 # Built files
ohair@88 58 build.dir=${output.dir}/build
ohair@88 59 build.classes.dir=${build.dir}/classes
ohair@88 60
ohair@88 61 # Distributed results
ohair@88 62 dist.dir=${output.dir}/dist
ohair@88 63 dist.lib.dir=${dist.dir}/lib
ohair@88 64 dist.classes.jar=${dist.lib.dir}/classes.jar
ohair@88 65 dist.src.zip=${dist.lib.dir}/src.zip
ohair@88 66
ohair@88 67 # Sanity information
ohair@88 68 sanity.info= Sanity Settings:${line.separator}\
ohair@88 69 ant.home=${ant.home}${line.separator}\
ohair@88 70 ant.version=${ant.version}${line.separator}\
ohair@88 71 ant.java.version=${ant.java.version}${line.separator}\
ohair@88 72 java.home=${java.home}${line.separator}\
ohair@88 73 java.version=${java.version}${line.separator}\
ohair@88 74 os.name=${os.name}${line.separator}\
ohair@88 75 os.arch=${os.arch}${line.separator}\
ohair@88 76 os.version=${os.version}${line.separator}\
ohair@88 77 bootstrap.dir=${bootstrap.dir}${line.separator}\
ohair@88 78 javac.jar=${javac.jar}${line.separator}\
ohair@88 79 javac.memoryInitialSize=${javac.memoryInitialSize}${line.separator}\
ohair@88 80 javac.memoryMaximumSize=${javac.memoryMaximumSize}${line.separator}\
ohair@88 81 javac.source=${javac.source}${line.separator}\
ohair@88 82 javac.debug=${javac.debug}${line.separator}\
ohair@88 83 javac.target=${javac.target}${line.separator}\
ohair@88 84 javac.version.opt=${javac.version.opt}${line.separator}\
ohair@88 85 javac.lint.opts=${javac.lint.opts}${line.separator}\
ohair@88 86 javac.no.jdk.warnings=${javac.no.jdk.warnings}${line.separator}\
ohair@88 87 output.dir=${output.dir}${line.separator}\
ohair@88 88 build.dir=${build.dir}${line.separator}\
ohair@88 89 dist.dir=${dist.dir}${line.separator}\
ohair@132 90 ${line.separator}
ohair@132 91
ohair@88 92 #------------------------------------------------------------

mercurial