Skip to content

Commit 469c04c

Browse files
author
Vicente Romero
committedFeb 17, 2022
Merge lworld
2 parents 07f6c61 + 6c863ce commit 469c04c

File tree

126 files changed

+28145
-101
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+28145
-101
lines changed
 

‎make/common/JavaCompilation.gmk

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ define SetupJavaCompilationBody
267267
JAVA_WARNINGS_ARE_ERRORS ?= -Werror
268268

269269
# Tell javac to do exactly as told and no more
270-
PARANOIA_FLAGS := -implicit:none -Xprefer:source -XDignore.symbol.file=true -encoding ascii
270+
PARANOIA_FLAGS := -implicit:none -Xprefer:source -XDignore.symbol.file=true -XDtolerateObjectInstantiation -encoding ascii
271271

272272
$1_FLAGS += -g -Xlint:all $$($1_TARGET_RELEASE) $$(PARANOIA_FLAGS) $$(JAVA_WARNINGS_ARE_ERRORS)
273273
$1_FLAGS += $$($1_JAVAC_FLAGS)

‎make/langtools/build.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
#
2525

2626
#javac configuration for "normal build" (these will be passed to the bootstrap compiler):
27-
javac.opts = -XDignore.symbol.file=true -Xlint:all,-deprecation,-exports -Werror -g:source,lines,vars
27+
javac.opts = -XDignore.symbol.file=true -Xlint:all,-deprecation,-exports -XDtolerateObjectInstantiation -Werror -g:source,lines,vars
2828

2929
#version used to compile build tools
30-
javac.build.opts = -XDignore.symbol.file=true -Xlint:all,-deprecation,-options -Werror -g:source,lines,vars
30+
javac.build.opts = -XDignore.symbol.file=true -Xlint:all,-deprecation,-options -XDtolerateObjectInstantiation -Werror -g:source,lines,vars
3131
javac.build.source = 8
3232
javac.build.target = 8
3333

0 commit comments

Comments
 (0)
Please sign in to comment.