graal
graal copied to clipboard
GraalVM compiles Java applications into native executables that start instantly, scale fast, and use fewer compute resources 🚀
I am trying to create a native-image using GraalVM's native-image and getting the following error: ```shell WARNING: Unknown module: org.graalvm.nativeimage.llvm specified to --add-exports WARNING: Unknown module: org.graalvm.nativeimage.llvm specified to --add-exports...
**Describe the issue** Basically same issue as #3965 but now on GraalVM version 22.2.0 It used to work correctly on GraalVM 22.1.0 **Steps to reproduce the issue** ``` bin\jlink --output...
**Describe the issue** ce3d101fba368cdb4bd8eebad770e5c59c8aa57a started causing issues in the ["Nigthly quarkus tests" workflow ](https://github.com/oracle/graal/actions/workflows/quarkus.yml) **Steps to reproduce the issue** Please include both build steps as well as run steps 1....
**Describe the issue** Upgrading to the latest graal-sdk (22.1.0) is causing a failure at image build time. Note that this used to work fine with 22.0.0.2. **Describe GraalVM and your...
We use JNI in our native images to communicate with Java. For this we use the existing JNI bindings found in GraalVM such as com.oracle.svm.jni.nativeapi.JNIEnvironment and com.oracle.svm.jni.nativeapi.JNIObjectHandle. When we upgraded...
I've got my spring apps working well with netty, now turning to tomcat. I've progressed a lot but hit this now and am having a little trouble diagnosing: ``` Error:...
### Overview Pointsto analysis is one of the corner stones in native image generation, and also the foundation of many static analyses. The `com.oracle.graal.pointsto` project is the state-of-the-art of pointsto...
Compiling hello world with substrate vm on ubuntu results in a 6.1 MiB executable. Is it possible to reduce this? The equivalent in golang is 1.6 MiB or < 1...
**Describe the issue** Building my project using the native-maven-plugin I get the error message `Detected a ZipFile object in the image heap.`. I attached a debugger and found out that...
**Describe the issue** ``` Fatal error: java.lang.NullPointerException at java.base/java.util.concurrent.ConcurrentHashMap.putVal(ConcurrentHashMap.java:1011) at java.base/java.util.concurrent.ConcurrentHashMap.put(ConcurrentHashMap.java:1006) at java.base/java.util.Collections$SetFromMap.add(Collections.java:5566) at com.oracle.svm.reflect.hosted.ReflectionDataBuilder.lambda$register$0(ReflectionDataBuilder.java:133) at com.oracle.svm.hosted.ConditionalConfigurationRegistry.registerConditionalConfiguration(ConditionalConfigurationRegistry.java:43) at com.oracle.svm.reflect.hosted.ReflectionDataBuilder.register(ReflectionDataBuilder.java:129) at org.graalvm.sdk/org.graalvm.nativeimage.impl.ReflectionRegistry.lambda$register$0(ReflectionRegistry.java:49) at java.base/java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:948) at java.base/java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:658) at org.graalvm.sdk/org.graalvm.nativeimage.impl.ReflectionRegistry.register(ReflectionRegistry.java:49) at org.graalvm.sdk/org.graalvm.nativeimage.hosted.RuntimeReflection.register(RuntimeReflection.java:72) at...