make/common/SetupJavaCompilers.gmk
author ihse
Tue, 04 Dec 2018 11:08:07 +0100
branchihse-errorprone-branch
changeset 57056 85a97ef23187
parent 56846 1186bac4e290
permissions -rw-r--r--
Modify source to make errorprone complain.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
     1
#
50892
a5557f24b4d4 8205615: Start of release updates for JDK 12
darcy
parents: 48695
diff changeset
     2
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
     4
#
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    10
#
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    15
# accompanied this code).
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    16
#
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    20
#
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    23
# questions.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    24
#
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    25
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    26
ifndef _SETUP_GMK
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    27
_SETUP_GMK := 1
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    28
48695
a7ce228abcd7 8196585: Make custom extension point additions
erikj
parents: 48343
diff changeset
    29
# Include custom extension hook
a7ce228abcd7 8196585: Make custom extension point additions
erikj
parents: 48343
diff changeset
    30
$(eval $(call IncludeCustomExtension, common/SetupJavaCompilers.gmk))
a7ce228abcd7 8196585: Make custom extension point additions
erikj
parents: 48343
diff changeset
    31
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    32
include JavaCompilation.gmk
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    33
48695
a7ce228abcd7 8196585: Make custom extension point additions
erikj
parents: 48343
diff changeset
    34
DISABLE_WARNINGS ?= -Xlint:all,-deprecation,-removal,-unchecked,-rawtypes,-cast,-serial,-dep-ann,-static,-fallthrough,-try,-varargs,-empty,-finally
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    35
28359
3a02fb1e9144 8067099: Add deprecation lint warning to build of jdk repository
darcy
parents: 27602
diff changeset
    36
# If warnings needs to be non-fatal for testing purposes use a command like:
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    37
# make JAVAC_WARNINGS="-Xlint:all -Xmaxwarns 10000"
48695
a7ce228abcd7 8196585: Make custom extension point additions
erikj
parents: 48343
diff changeset
    38
JAVAC_WARNINGS ?= -Xlint:all -Werror
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    39
26548
3b002da2aee1 8058118: Generate modules.list during the build
erikj
parents: 26115
diff changeset
    40
# The BOOT_JAVAC setup uses the boot jdk compiler to compile the tools
3b002da2aee1 8058118: Generate modules.list during the build
erikj
parents: 26115
diff changeset
    41
# and the interim javac, to be run by the boot jdk.
3b002da2aee1 8058118: Generate modules.list during the build
erikj
parents: 26115
diff changeset
    42
$(eval $(call SetupJavaCompiler,BOOT_JAVAC, \
3b002da2aee1 8058118: Generate modules.list during the build
erikj
parents: 26115
diff changeset
    43
    JAVAC := $(JAVAC), \
41172
1de8867db5a3 8166965: Some small java build tools are still running with big JVM configuration
erikj
parents: 40611
diff changeset
    44
    FLAGS := \
1de8867db5a3 8166965: Some small java build tools are still running with big JVM configuration
erikj
parents: 40611
diff changeset
    45
        $(JAVA_TOOL_FLAGS_SMALL) \
1de8867db5a3 8166965: Some small java build tools are still running with big JVM configuration
erikj
parents: 40611
diff changeset
    46
        $(BOOT_JDK_SOURCETARGET) \
1de8867db5a3 8166965: Some small java build tools are still running with big JVM configuration
erikj
parents: 40611
diff changeset
    47
        -XDignore.symbol.file=true -g \
36506
17612cee3530 8142968: Module System implementation
alanb
parents: 35366
diff changeset
    48
        -Xlint:all$(COMMA)-deprecation$(COMMA)-options -Werror, \
33055
3676b99f33cf 8140312: Enable new sjavac server only mode in jdk build
erikj
parents: 32460
diff changeset
    49
    DISABLE_SJAVAC := true, \
3676b99f33cf 8140312: Enable new sjavac server only mode in jdk build
erikj
parents: 32460
diff changeset
    50
))
26548
3b002da2aee1 8058118: Generate modules.list during the build
erikj
parents: 26115
diff changeset
    51
27595
cff167b3bfa2 8065914: Various improvements and cleanup of build system
ihse
parents: 26548
diff changeset
    52
# Any java code executed during a JDK build to build other parts of the JDK must be
cff167b3bfa2 8065914: Various improvements and cleanup of build system
ihse
parents: 26548
diff changeset
    53
# executed by the bootstrap JDK (probably with -Xbootclasspath/p: ) and for this
cff167b3bfa2 8065914: Various improvements and cleanup of build system
ihse
parents: 26548
diff changeset
    54
# purpose must be built with -target PREVIOUS for bootstrapping purposes, which
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    55
# requires restricting to language level and api of previous JDK.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    56
#
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    57
# The generate old bytecode javac setup uses the new compiler to compile for the
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    58
# boot jdk to generate tools that need to be run with the boot jdk.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    59
# Thus we force the target bytecode to the previous JDK version.
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 26548
diff changeset
    60
# Add -Xlint:-options to avoid the warning about not setting -bootclasspath. Since
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 26548
diff changeset
    61
# it's running on the boot jdk, the default bootclasspath is correct.
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    62
$(eval $(call SetupJavaCompiler,GENERATE_OLDBYTECODE, \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    63
    JVM := $(JAVA_SMALL), \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    64
    JAVAC := $(NEW_JAVAC), \
35366
394a28cc1032 8148483: JEP 280: Indify String Concatenation
shade
parents: 34101
diff changeset
    65
    FLAGS := $(BOOT_JDK_SOURCETARGET) -XDignore.symbol.file=true -XDstringConcat=inline \
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 26548
diff changeset
    66
        $(DISABLE_WARNINGS) -Xlint:-options, \
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    67
    SERVER_DIR := $(SJAVAC_SERVER_DIR), \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    68
    SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    69
56846
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    70
ifneq ($(ERRORPRONE_JAR), )
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    71
  # Extra flags needed to run bootstrap javac with the errorprone static code
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    72
  # analysis tool as -Xplugin.
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    73
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    74
  ERRORPRONE_JAVA_FLAGS := \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    75
          --add-exports jdk.compiler.interim/com.sun.tools.javac.api=ALL-UNNAMED \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    76
          --add-exports jdk.compiler.interim/com.sun.tools.javac.util=ALL-UNNAMED \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    77
          --add-exports jdk.compiler.interim/com.sun.tools.javac.tree=ALL-UNNAMED \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    78
          --add-exports jdk.compiler.interim/com.sun.tools.javac.main=ALL-UNNAMED \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    79
          --add-exports jdk.compiler.interim/com.sun.tools.javac.code=ALL-UNNAMED \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    80
          --add-exports jdk.compiler.interim/com.sun.tools.javac.processing=ALL-UNNAMED \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    81
          --add-exports jdk.compiler.interim/com.sun.tools.javac.parser=ALL-UNNAMED \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    82
          --add-exports jdk.compiler.interim/com.sun.tools.javac.comp=ALL-UNNAMED \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    83
          --add-opens=jdk.compiler.interim/com.sun.tools.javac.comp=ALL-UNNAMED \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    84
          #
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    85
57056
85a97ef23187 Modify source to make errorprone complain.
ihse
parents: 56846
diff changeset
    86
          # --add-modules java.logging \
85a97ef23187 Modify source to make errorprone complain.
ihse
parents: 56846
diff changeset
    87
56846
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    88
  ERRORPRONE_JAVAC_FLAGS := \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    89
          '-Xplugin:ErrorProne -XepDisableAllChecks -Xep:CollectionIncompatibleType:ERROR' \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    90
          -XDcompilePolicy=byfile \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    91
          #
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    92
endif
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    93
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    94
# The generate new bytecode javac setup uses the new compiler to compile for the
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    95
# new jdk. This new bytecode might only be possible to run using the new jvm.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    96
$(eval $(call SetupJavaCompiler,GENERATE_JDKBYTECODE, \
56846
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
    97
    JVM := $(JAVA_JAVAC) $(ERRORPRONE_JAVA_FLAGS), \
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
    98
    JAVAC := $(NEW_JAVAC), \
50892
a5557f24b4d4 8205615: Start of release updates for JDK 12
darcy
parents: 48695
diff changeset
    99
    FLAGS := -source 12 -target 12 --doclint-format html5 \
56846
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
   100
        -encoding ascii -XDignore.symbol.file=true $(JAVAC_WARNINGS) \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
   101
        $(ERRORPRONE_JAVAC_FLAGS), \
1186bac4e290 Add errorprone functionality. Still got some module access issues.
ihse
parents: 50892
diff changeset
   102
    PROCESSORPATH := $(ERRORPRONE_JAR), \
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   103
    SERVER_DIR := $(SJAVAC_SERVER_DIR), \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   104
    SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   105
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   106
# The generate new bytecode javac setup uses the new compiler to compile for the
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   107
# new jdk. This new bytecode might only be possible to run using the new jvm.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   108
$(eval $(call SetupJavaCompiler,GENERATE_JDKBYTECODE_NOWARNINGS, \
34101
a1db3b482137 8143296: javac-server/sjavac not compatible with LogFailures on Windows
erikj
parents: 33055
diff changeset
   109
    JVM := $(JAVA_JAVAC), \
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   110
    JAVAC := $(NEW_JAVAC), \
50892
a5557f24b4d4 8205615: Start of release updates for JDK 12
darcy
parents: 48695
diff changeset
   111
    FLAGS := -source 12 -target 12 \
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 26548
diff changeset
   112
        -encoding ascii -XDignore.symbol.file=true $(DISABLE_WARNINGS), \
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   113
    SERVER_DIR := $(SJAVAC_SERVER_DIR), \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   114
    SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   115
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   116
# After the jdk is built, we want to build demos using only the recently
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   117
# generated jdk classes and nothing else, no jdk source, etc etc.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   118
# I.e. the rt.jar, but since rt.jar has not yet been generated
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   119
# (it will be in "make images") therefore we use classes instead.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   120
$(eval $(call SetupJavaCompiler,GENERATE_USINGJDKBYTECODE, \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   121
    JVM := $(JAVA_SMALL), \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   122
    JAVAC := $(NEW_JAVAC), \
40611
53ba2f7abd45 8160851: Remove old launcher module-related options
mchung
parents: 40241
diff changeset
   123
    FLAGS := --upgrade-module-path $(JDK_OUTPUTDIR)/modules --system none $(DISABLE_WARNINGS), \
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   124
    SERVER_DIR := $(SJAVAC_SERVER_DIR), \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   125
    SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   126
47364
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 45271
diff changeset
   127
# Use boot javac to generate JDK 8 compatible class files explicitly
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 45271
diff changeset
   128
$(eval $(call SetupJavaCompiler,GENERATE_8_BYTECODE, \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 45271
diff changeset
   129
    JAVAC := $(JAVAC), \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 45271
diff changeset
   130
    FLAGS := \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 45271
diff changeset
   131
        $(JAVA_TOOL_FLAGS_SMALL) \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 45271
diff changeset
   132
        --release 8 \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 45271
diff changeset
   133
        -XDignore.symbol.file=true -g \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 45271
diff changeset
   134
        -Xlint:all -Werror, \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 45271
diff changeset
   135
    DISABLE_SJAVAC := true, \
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 45271
diff changeset
   136
))
6b3389375f31 8189094: Change required boot jdk to JDK 9
erikj
parents: 45271
diff changeset
   137
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents:
diff changeset
   138
endif # _SETUP_GMK