Skip to content

8357979: [JVMCI] jdk.internal.vm.ci should have earlier class file version #25494

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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)

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