build.properties

Sat, 17 Oct 2020 03:50:29 +0100

author
andrew
date
Sat, 17 Oct 2020 03:50:29 +0100
changeset 1917
268fcb5dbff7
parent 286
f50545b5e2f1
child 637
9c07ef4934dd
permissions
-rw-r--r--

Added tag jdk8u272-b10 for changeset 1dc430818e0c

duke@1 1 #
katleman@256 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@116 7 # published by the Free Software Foundation. Oracle designates this
duke@1 8 # particular file as subject to the "Classpath" exception as provided
ohair@116 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@116 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@116 22 # or visit www.oracle.com if you need additional information or have any
ohair@116 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@85 31 javac.jar=${bootstrap.dir}/lib/javac.jar
duke@1 32
ohair@95 33 # The tools.jar is needed in the classpath to compile these sources
ohair@95 34 jdk.home=${java.home}/..
ohair@95 35 tools.jar=${jdk.home}/lib/tools.jar
ohair@95 36
duke@1 37 # options for the <javac> tasks used to compile the tools
jjg@73 38 javac.source = 7
jjg@73 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@85 45 #javac.lint.opts = -Xlint:all,-unchecked,-deprecation,-fallthrough,-cast,-serial
ohair@85 46 javac.lint.opts=
duke@1 47
duke@1 48 # JVM memory size
ohair@85 49 javac.memoryInitialSize = 256m
ohair@85 50 javac.memoryMaximumSize = 512m
duke@1 51
duke@1 52 #------------------------------------------------------------
ohair@85 53
ohair@85 54 # Root of output directories
ohair@85 55 output.dir=.
ohair@85 56
ohair@85 57 # Built files
ohair@85 58 build.dir=${output.dir}/build
ohair@85 59 build.classes.dir=${build.dir}/classes
ohair@85 60
ohair@85 61 # Distributed results
ohair@85 62 dist.dir=${output.dir}/dist
ohair@85 63 dist.lib.dir=${dist.dir}/lib
ohair@85 64 dist.classes.jar=${dist.lib.dir}/classes.jar
ohair@85 65 dist.src.zip=${dist.lib.dir}/src.zip
ohair@85 66
ohair@85 67 # Sanity information
ohair@85 68 sanity.info= Sanity Settings:${line.separator}\
ohair@85 69 ant.home=${ant.home}${line.separator}\
ohair@85 70 ant.version=${ant.version}${line.separator}\
ohair@85 71 ant.java.version=${ant.java.version}${line.separator}\
ohair@85 72 java.home=${java.home}${line.separator}\
ohair@85 73 java.version=${java.version}${line.separator}\
ohair@85 74 os.name=${os.name}${line.separator}\
ohair@85 75 os.arch=${os.arch}${line.separator}\
ohair@85 76 os.version=${os.version}${line.separator}\
ohair@85 77 bootstrap.dir=${bootstrap.dir}${line.separator}\
ohair@85 78 javac.jar=${javac.jar}${line.separator}\
ohair@85 79 javac.memoryInitialSize=${javac.memoryInitialSize}${line.separator}\
ohair@85 80 javac.memoryMaximumSize=${javac.memoryMaximumSize}${line.separator}\
ohair@85 81 javac.source=${javac.source}${line.separator}\
ohair@85 82 javac.debug=${javac.debug}${line.separator}\
ohair@85 83 javac.target=${javac.target}${line.separator}\
ohair@85 84 javac.version.opt=${javac.version.opt}${line.separator}\
ohair@85 85 javac.lint.opts=${javac.lint.opts}${line.separator}\
ohair@85 86 javac.no.jdk.warnings=${javac.no.jdk.warnings}${line.separator}\
ohair@85 87 output.dir=${output.dir}${line.separator}\
ohair@85 88 build.dir=${build.dir}${line.separator}\
ohair@85 89 dist.dir=${dist.dir}${line.separator}\
ohair@124 90 ${line.separator}
ohair@124 91
ohair@85 92 #------------------------------------------------------------

mercurial