Skip to content

Commit

Permalink
Merge pull request #33 from pshipton/target11
Browse files Browse the repository at this point in the history
Reverts #12, javac compile with source 11 target 11
  • Loading branch information
DanHeidinga authored Sep 18, 2018
2 parents ba60079 + 053768e commit 8c1f16a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make/common/SetupJavaCompilers.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ $(eval $(call SetupJavaCompiler,GENERATE_OLDBYTECODE, \
$(eval $(call SetupJavaCompiler,GENERATE_JDKBYTECODE, \
JVM := $(JAVA_JAVAC), \
JAVAC := $(NEW_JAVAC), \
FLAGS := -source 10 -target 10 --doclint-format html5 \
FLAGS := -source 11 -target 11 --doclint-format html5 \
-encoding ascii -XDignore.symbol.file=true $(JAVAC_WARNINGS), \
SERVER_DIR := $(SJAVAC_SERVER_DIR), \
SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
Expand All @@ -82,7 +82,7 @@ $(eval $(call SetupJavaCompiler,GENERATE_JDKBYTECODE, \
$(eval $(call SetupJavaCompiler,GENERATE_JDKBYTECODE_NOWARNINGS, \
JVM := $(JAVA_JAVAC), \
JAVAC := $(NEW_JAVAC), \
FLAGS := -source 10 -target 10 \
FLAGS := -source 11 -target 11 \
-encoding ascii -XDignore.symbol.file=true $(DISABLE_WARNINGS), \
SERVER_DIR := $(SJAVAC_SERVER_DIR), \
SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
Expand Down

0 comments on commit 8c1f16a

Please sign in to comment.