Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion make/modules/jdk.internal.vm.ci/Java.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,14 @@

DISABLED_WARNINGS_java += dangling-doc-comments this-escape

# Target an older JDK so JVMCI class files can be read by Native Image
# running on an older JDK.
JVMCI_SOURCETARGET = $(BOOT_JDK_SOURCETARGET)

# -parameters provides method's parameters information in class file,
# JVMCI compilers make use of that information for various sanity checks.
# Don't use Indy strings concatenation to have good JVMCI startup performance.

JAVAC_FLAGS += -parameters -XDstringConcat=inline
JAVAC_FLAGS += -parameters -XDstringConcat=inline $(JVMCI_SOURCETARGET)

################################################################################