< prev index next >

make/common/SetupJavaCompilers.gmk

Print this page


   1 #
   2 # Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 ifndef _SETUP_GMK
  27 _SETUP_GMK := 1
  28 
  29 include JavaCompilation.gmk
  30 
  31 DISABLE_WARNINGS := -Xlint:all,-deprecation,-unchecked,-rawtypes,-cast,-serial,-dep-ann,-static,-fallthrough,-try,-varargs,-empty,-finally
  32 
  33 # To build with all warnings enabled, do the following:
  34 # make JAVAC_WARNINGS="-Xlint:all -Xmaxwarns 10000"
  35 JAVAC_WARNINGS := -Xlint:all,-deprecation -Werror
  36 
  37 # The BOOT_JAVAC setup uses the boot jdk compiler to compile the tools
  38 # and the interim javac, to be run by the boot jdk.
  39 $(eval $(call SetupJavaCompiler,BOOT_JAVAC, \
  40     JAVAC := $(JAVAC), \
  41     FLAGS := -XDignore.symbol.file=true -g -Xlint:all$(COMMA)-deprecation -Werror))
  42 
  43 # Any java code executed during a JDK build to build other parts of the JDK must be
  44 # executed by the bootstrap JDK (probably with -Xbootclasspath/p: ) and for this
  45 # purpose must be built with -target PREVIOUS for bootstrapping purposes, which
  46 # requires restricting to language level and api of previous JDK.
  47 #
  48 # The generate old bytecode javac setup uses the new compiler to compile for the
  49 # boot jdk to generate tools that need to be run with the boot jdk.
  50 # Thus we force the target bytecode to the previous JDK version.
  51 # Add -Xlint:-options to avoid the warning about not setting -bootclasspath. Since
  52 # it's running on the boot jdk, the default bootclasspath is correct.
  53 $(eval $(call SetupJavaCompiler,GENERATE_OLDBYTECODE, \
  54     JVM := $(JAVA_SMALL), \
  55     JAVAC := $(NEW_JAVAC), \


   1 #
   2 # Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 ifndef _SETUP_GMK
  27 _SETUP_GMK := 1
  28 
  29 include JavaCompilation.gmk
  30 
  31 DISABLE_WARNINGS := -Xlint:all,-deprecation,-unchecked,-rawtypes,-cast,-serial,-dep-ann,-static,-fallthrough,-try,-varargs,-empty,-finally
  32 
  33 # If warnings needs to be non-fatal for testing purposes use a command like:
  34 # make JAVAC_WARNINGS="-Xlint:all -Xmaxwarns 10000"
  35 JAVAC_WARNINGS := -Xlint:all -Werror
  36 
  37 # The BOOT_JAVAC setup uses the boot jdk compiler to compile the tools
  38 # and the interim javac, to be run by the boot jdk.
  39 $(eval $(call SetupJavaCompiler,BOOT_JAVAC, \
  40     JAVAC := $(JAVAC), \
  41     FLAGS := -XDignore.symbol.file=true -g -Xlint:all$(COMMA)-deprecation -Werror))
  42 
  43 # Any java code executed during a JDK build to build other parts of the JDK must be
  44 # executed by the bootstrap JDK (probably with -Xbootclasspath/p: ) and for this
  45 # purpose must be built with -target PREVIOUS for bootstrapping purposes, which
  46 # requires restricting to language level and api of previous JDK.
  47 #
  48 # The generate old bytecode javac setup uses the new compiler to compile for the
  49 # boot jdk to generate tools that need to be run with the boot jdk.
  50 # Thus we force the target bytecode to the previous JDK version.
  51 # Add -Xlint:-options to avoid the warning about not setting -bootclasspath. Since
  52 # it's running on the boot jdk, the default bootclasspath is correct.
  53 $(eval $(call SetupJavaCompiler,GENERATE_OLDBYTECODE, \
  54     JVM := $(JAVA_SMALL), \
  55     JAVAC := $(NEW_JAVAC), \


< prev index next >