We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec3a06 commit 40bd64cCopy full SHA for 40bd64c
sdk/mx.sdk/mx_sdk_vm_ng.py
@@ -424,6 +424,10 @@ def get_build_args(self):
424
experimental_build_args.append('-H:+VerifyRuntimeCompilationFrameStates')
425
build_args = []
426
427
+ # GR-65661: we need to disable the check in GraalVM for 21 as it does not allow polyglot version 26.0.0-dev
428
+ if get_bootstrap_graalvm_version() < mx.VersionSpec("25"):
429
+ build_args += ['-Dpolyglotimpl.DisableVersionChecks=true']
430
+
431
canonical_name = self.subject.base_file_name()
432
profiles = mx_sdk_vm_impl._image_profiles(canonical_name)
433
if profiles:
0 commit comments