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.
-llvm
1 parent b8da69f commit f668accCopy full SHA for f668acc
compiler/mx.compiler/mx_compiler.py
@@ -1263,6 +1263,9 @@ def get_latest_jvmci_version():
1263
mx.abort(msg)
1264
1265
if version_check_setting == 'strict' and not success:
1266
+ # [GR-67676] The `-llvm` artifacts are currently not up to date due to a JDK build system problem JDK-8361844.
1267
+ if latest.endswith('-llvm'):
1268
+ return
1269
if latest == 'not found':
1270
msg = f'No JVMCI JDK found in {common_path} that matches {_jdk_jvmci_version}.'
1271
msg += os.linesep + f'Check that {latest} matches the versions of the other JVMCI JDKs.'
0 commit comments