-
Notifications
You must be signed in to change notification settings - Fork 73
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
Cannot inline bytecode built with JVM target 11 into bytecode that is being built with JVM target 1.8 #579
Comments
I think it's a duplicate. #576. Please rebase on master. I hope it helps |
I rebased and I still come across this issue. I also updated the source compatibility but I still get the same error. My understanding is that when a call to I tried making this change in
adding |
After some debugging, I found out that the compiler configurations that is built in The quick fix for me was to add the lines Refer to #594 |
I cloned this project and added my own kotlin library that is compiled with java 11 as the target. I however cannot run code that requires fold operation based on the result of library operations. The server returns this error: "
Cannot inline bytecode built with JVM target 11 into bytecode that is being built with JVM target 1.8. Please specify proper '-jvm-target' option
"What JVM target is used to the the code passed my
/run
endpoint?. How can I specify the jvm target for run calls?The text was updated successfully, but these errors were encountered: