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.
2 parents 0261fc4 + 37358e6 commit 6d8b739Copy full SHA for 6d8b739
substratevm/src/com.oracle.svm.core.posix/src/com/oracle/svm/core/posix/linux/libc/MuslLibC.java
@@ -67,8 +67,8 @@ public void checkIfLibCSupported() {
67
if (!SubstrateOptions.StaticExecutable.getValue()) {
68
throw UserError.abort("Musl can only be used for statically linked executables.");
69
}
70
- if (JavaVersionUtil.JAVA_SPEC != 11) {
71
- throw UserError.abort("Musl can only be used with labsjdk 11.");
+ if (JavaVersionUtil.JAVA_SPEC < 11) {
+ throw UserError.abort("Musl can only be used with labsjdk 11+.");
72
73
74
0 commit comments