build.properties

Fri, 02 Oct 2009 11:26:36 -0700

author
xdono
date
Fri, 02 Oct 2009 11:26:36 -0700
changeset 88
f4466e1b6080
parent 86
77708e68db52
child 91
cc35f0e129d2
permissions
-rw-r--r--

Added tag jdk7-b73 for changeset 558985e26fe1

duke@1 1 #
xdono@71 2 # Copyright 2007-2009 Sun Microsystems, Inc. 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
duke@1 7 # published by the Free Software Foundation. Sun designates this
duke@1 8 # particular file as subject to the "Classpath" exception as provided
duke@1 9 # by Sun 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 #
duke@1 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@1 22 # CA 95054 USA or visit www.sun.com if you need additional information or
duke@1 23 # have any questions.
duke@1 24 #
duke@1 25
ohair@85 26 # Base locations where bundles are located
ohair@85 27 slashjava=/java
ohair@85 28 devtools=${slashjava}/devtools
ohair@85 29
duke@1 30 # This is the JDK used to build and run the bootstrap version of javac.
duke@1 31 # The bootstrap javac is used to compile both boostrap versions of the
duke@1 32 # other tools, and product versions of all the tools.
duke@1 33 # Override this path as needed, either on the command line or in
duke@1 34 # one of the standard user build.properties files (see build.xml)
ohair@85 35 javac.jar=${bootstrap.dir}/lib/javac.jar
duke@1 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 # Where all drop sources live
ohair@86 68 drop.dir=./drop
ohair@85 69
ohair@85 70 # Where patches to drop bundle sources live
ohair@85 71 patches.dir=patches
ohair@85 72
ohair@85 73 # Original source area
ohair@85 74 orig.dir=src
ohair@85 75 orig.src.dir=${orig.dir}/share/classes
ohair@85 76
ohair@85 77 # Sanity information
ohair@85 78 sanity.info= Sanity Settings:${line.separator}\
ohair@85 79 ant.home=${ant.home}${line.separator}\
ohair@85 80 ant.version=${ant.version}${line.separator}\
ohair@85 81 ant.java.version=${ant.java.version}${line.separator}\
ohair@85 82 java.home=${java.home}${line.separator}\
ohair@85 83 java.version=${java.version}${line.separator}\
ohair@85 84 os.name=${os.name}${line.separator}\
ohair@85 85 os.arch=${os.arch}${line.separator}\
ohair@85 86 os.version=${os.version}${line.separator}\
ohair@85 87 bootstrap.dir=${bootstrap.dir}${line.separator}\
ohair@85 88 javac.jar=${javac.jar}${line.separator}\
ohair@85 89 javac.memoryInitialSize=${javac.memoryInitialSize}${line.separator}\
ohair@85 90 javac.memoryMaximumSize=${javac.memoryMaximumSize}${line.separator}\
ohair@85 91 javac.source=${javac.source}${line.separator}\
ohair@85 92 javac.debug=${javac.debug}${line.separator}\
ohair@85 93 javac.target=${javac.target}${line.separator}\
ohair@85 94 javac.version.opt=${javac.version.opt}${line.separator}\
ohair@85 95 javac.lint.opts=${javac.lint.opts}${line.separator}\
ohair@85 96 javac.no.jdk.warnings=${javac.no.jdk.warnings}${line.separator}\
ohair@85 97 output.dir=${output.dir}${line.separator}\
ohair@85 98 build.dir=${build.dir}${line.separator}\
ohair@85 99 dist.dir=${dist.dir}${line.separator}\
ohair@85 100 drop.dir=${drop.dir}${line.separator}\
ohair@85 101 ${line.separator}
ohair@85 102
ohair@85 103 #------------------------------------------------------------

mercurial