You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: substratevm/mx.substratevm/suite.py
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# pylint: disable=line-too-long
2
2
suite= {
3
-
"mxversion": "5.301.0",
3
+
"mxversion": "5.308.1",
4
4
"name": "substratevm",
5
5
"version" : "21.3.0",
6
6
"release" : False,
@@ -1078,16 +1078,21 @@
1078
1078
"moduleInfo" : {
1079
1079
"name" : "org.graalvm.nativeimage.builder",
1080
1080
"exports" : [
1081
+
"com.oracle.svm.core.configure", # even Feature impls on class-path need access, thus unqualified
1082
+
"com.oracle.svm.core.jdk", # Uses of com.oracle.svm.core.jdk.StackTraceUtils
1083
+
"com.oracle.svm.core.snippets", # Uses of com.oracle.svm.core.snippets.KnownIntrinsics
1084
+
"com.oracle.svm.core", # Uses of com.oracle.svm.core.TypeResult
1085
+
"com.oracle.svm.core.util", # Uses of com.oracle.svm.core.util.VMError
1081
1086
"com.oracle.svm.hosted to java.base",
1082
1087
"com.oracle.svm.hosted.agent to java.instrument",
1083
-
"com.oracle.svm.core.graal.thread to jdk.internal.vm.compiler",
1084
-
"com.oracle.svm.core.classinitialization to jdk.internal.vm.compiler",
1085
1088
"com.oracle.svm.truffle.api to org.graalvm.truffle",
1086
-
"* to org.graalvm.nativeimage.driver,org.graalvm.nativeimage.configure,org.graalvm.nativeimage.librarysupport,org.graalvm.nativeimage.llvm,org.graalvm.nativeimage.agent.jvmtibase,org.graalvm.nativeimage.agent.tracing,org.graalvm.nativeimage.agent.diagnostics,com.oracle.svm.svm_enterprise",
1089
+
"* to jdk.internal.vm.compiler,org.graalvm.nativeimage.driver,org.graalvm.nativeimage.configure,org.graalvm.nativeimage.librarysupport,org.graalvm.nativeimage.llvm,org.graalvm.nativeimage.agent.jvmtibase,org.graalvm.nativeimage.agent.tracing,org.graalvm.nativeimage.agent.diagnostics,com.oracle.svm.svm_enterprise",
1087
1090
],
1088
1091
"opens" : [
1089
1092
"com.oracle.svm.core.nodes to jdk.internal.vm.compiler",
1090
1093
"com.oracle.svm.core.graal.nodes to jdk.internal.vm.compiler",
1094
+
"com.oracle.svm.core.graal.snippets to jdk.internal.vm.compiler",
1095
+
"com.oracle.svm.hosted.fieldfolding to jdk.internal.vm.compiler",
0 commit comments