graal
graal copied to clipboard
GraalVM compiles Java applications into native executables that start instantly, scale fast, and use fewer compute resources 🚀
Related issue: https://github.com/oracle/graal/issues/4732 Currently, a native image JMX server can be started and a java client can connect. Methods can be invoked on managed beans remotely. The server will start...
[GR-40198] Provide public API for feature-based JNI / Resource / Proxy / Serialization registration.
This PR adds the missing APIs that will allow our users to not rely on our svm-internal APIs anymore.
This PR tries to ensure that when running on GraalVM, the polyglot, truffle runtime, and language services can be loaded even with a context class loader that does not inherit...
[GR-39210] Upgrade CE debug info feature to provide information about Java types for Windows/PECOFF
This PR adds type information to the CodeView 4 debug information (See PR #2396). It is related to issue #2986, but is targeted to Windows and Visual Studio. This PR...
**Describe GraalVM and your environment :** - GraalVM version or commit id if built from source: **[3c4313396a95b90005432f64e9100b0212f92dcf](https://github.com/graalvm/graalvm-ce-dev-builds/releases/tag/22.3.0-dev-20220714_0205)** - CE or EE: **CE** - JDK version: **`OpenJDK Runtime Environment GraalVM CE...
**Describe the issue** When we are using `quarkus-awt` with native build then it gives us the failure response. ``` 22.1-java17: Pulling from quarkus/ubi-quarkus-native-image Digest: sha256:3d5dd675ced8005a2530019e1acc69641ae67ebd73fa7facfd038e1061d24152 Status: Image is up to...
**Feature request** Native image can be built as static executable, share library or executable file, but not static share library, as shown in the following table. | | static |...
Using GraalVM: ``` openjdk version "17.0.4" 2022-07-19 OpenJDK Runtime Environment GraalVM CE 22.2.0 (build 17.0.4+8-jvmci-22.2-b06) OpenJDK 64-Bit Server VM GraalVM CE 22.2.0 (build 17.0.4+8-jvmci-22.2-b06, mixed mode, sharing) ``` **Describe the...
We are working on an implementation of a [functional programming language](http://enso.org) on top of Truffle. One of the important features of functional languages is [referential transparency](https://en.wikipedia.org/wiki/Referential_transparency). We can reach it...