From 5513211fe6accd7cdeef2b3efde7dd91538a24bc Mon Sep 17 00:00:00 2001 From: Olya Gupalo Date: Tue, 19 Mar 2024 16:03:48 +0100 Subject: [PATCH 1/4] Update Java on Truffle download links for 24.0 --- docs/reference-manual/java-on-truffle/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/reference-manual/java-on-truffle/README.md b/docs/reference-manual/java-on-truffle/README.md index 7ee92c8f8c1d..b110b7868853 100644 --- a/docs/reference-manual/java-on-truffle/README.md +++ b/docs/reference-manual/java-on-truffle/README.md @@ -33,11 +33,11 @@ You can download a standalone based on Oracle GraalVM or GraalVM Community Editi 1. Download the Java on Truffle (Espresso) 23.1 standalone for your operating system: - * [Linux x64](https://gds.oracle.com/api/20220101/artifacts/069B12298B3349EDE0631718000A11BC/content) - * [Linux AArch64](https://gds.oracle.com/api/20220101/artifacts/069B4EC01B97519AE0631718000AA34D/content) - * [macOS x64](https://gds.oracle.com/api/20220101/artifacts/07867F4EBBAF81ADE0631718000AA7AB/content) - * [macOS AArch64](https://gds.oracle.com/api/20220101/artifacts/069B12298B4949EDE0631718000A11BC/content) - * [Windows x64](https://gds.oracle.com/api/20220101/artifacts/07867F4EBBBD81ADE0631718000AA7AB/content) + * [Linux x64](https://gds.oracle.com/download/espresso/archive/espresso-java21-24.0.0-linux-amd64.tar.gz) + * [Linux AArch64](https://gds.oracle.com/download/espresso/archive/espresso-java21-24.0.0-linux-aarch64.tar.gz) + * [macOS x64](https://gds.oracle.com/download/espresso/archive/espresso-java21-24.0.0-macos-amd64.tar.gz) + * [macOS AArch64](https://gds.oracle.com/download/espresso/archive/espresso-java21-24.0.0-macos-aarch64.tar.gz) + * [Windows x64](https://gds.oracle.com/download/espresso/archive/espresso-java21-24.0.0-windows-amd64.zip) 2. Unzip the archive: From b33c5c3fbb3fba1289af9fc7a99324a85bbb3372 Mon Sep 17 00:00:00 2001 From: Olya Gupalo Date: Tue, 19 Mar 2024 16:06:50 +0100 Subject: [PATCH 2/4] Update Wasm download links for 24.0 --- docs/reference-manual/wasm/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/reference-manual/wasm/README.md b/docs/reference-manual/wasm/README.md index a5866d149534..b9390a534a42 100644 --- a/docs/reference-manual/wasm/README.md +++ b/docs/reference-manual/wasm/README.md @@ -18,17 +18,17 @@ You can download a standalone based on Oracle GraalVM or GraalVM Community Editi 1. Download the Wasm 23.1 standalone for your operating system: - Native standalone - * [Linux x64](https://gds.oracle.com/api/20220101/artifacts/069B4EC01C4D519AE0631718000AA34D/content) - * [Linux AArch64](https://gds.oracle.com/api/20220101/artifacts/069B4EC01C5E519AE0631718000AA34D/content) - * [macOS x64](https://gds.oracle.com/api/20220101/artifacts/069B12298B9149EDE0631718000A11BC/content) - * [macOS AArch64](https://gds.oracle.com/api/20220101/artifacts/069B4EC01C7B519AE0631718000AA34D/content) - * [Windows x64](https://gds.oracle.com/api/20220101/artifacts/069B12298BB049EDE0631718000A11BC/content) + * [Linux x64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.0-linux-amd64.tar.gz) + * [Linux AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.0-linux-aarch64.tar.gz) + * [macOS x64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.0-macos-amd64.tar.gz) + * [macOS AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.0-macos-aarch64.tar.gz) + * [Windows x64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.0-windows-amd64.zip) - JVM standalone - * [Linux x64](https://gds.oracle.com/api/20220101/artifacts/069B4EC01C98519AE0631718000AA34D/content) - * [Linux AArch64](https://gds.oracle.com/api/20220101/artifacts/069B12298BDD49EDE0631718000A11BC/content) - * [macOS x64](https://gds.oracle.com/api/20220101/artifacts/07867F4EBC6481ADE0631718000AA7AB/content) - * [macOS AArch64](https://gds.oracle.com/api/20220101/artifacts/069B4EC01CB9519AE0631718000AA34D/content) - * [Windows x64](https://gds.oracle.com/api/20220101/artifacts/07867F4EBC7781ADE0631718000AA7AB/content) + * [Linux x64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.0.0-linux-amd64.tar.gz) + * [Linux AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.0.0-linux-aarch64.tar.gz) + * [macOS x64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.0.0-macos-amd64.tar.gz) + * [macOS AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.0.0-macos-aarch64.tar.gz) + * [Windows x64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.0.0-windows-amd64.zip) 2. Unzip the archive: From 2bc3f7a76cd1a3053e211ff9a0b6f7934ec2a14e Mon Sep 17 00:00:00 2001 From: Olya Gupalo Date: Tue, 19 Mar 2024 16:09:18 +0100 Subject: [PATCH 3/4] Update LLVM runtime download links for 24.0 --- docs/reference-manual/llvm/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/reference-manual/llvm/README.md b/docs/reference-manual/llvm/README.md index 0f5e2b944fd9..e19e0df82633 100644 --- a/docs/reference-manual/llvm/README.md +++ b/docs/reference-manual/llvm/README.md @@ -20,17 +20,17 @@ You can download a standalone based on Oracle GraalVM or GraalVM Community Editi 1. Download the LLVM 23.1 standalone for your operating system: - Native standalone - * [Linux x64](https://gds.oracle.com/api/20220101/artifacts/07867F4EBC7C81ADE0631718000AA7AB/content) - * [Linux AArch64](https://gds.oracle.com/api/20220101/artifacts/07867F4EBC8181ADE0631718000AA7AB/content) - * [macOS x64](https://gds.oracle.com/api/20220101/artifacts/069B4EC01CBE519AE0631718000AA34D/content) - * [macOS AArch64](https://gds.oracle.com/api/20220101/artifacts/069B12298BE249EDE0631718000A11BC/content) - * [Windows x64](https://gds.oracle.com/api/20220101/artifacts/069B12298BE749EDE0631718000A11BC/content) + * [Linux x64](https://gds.oracle.com/download/llvm/archive/llvm-24.0.0-linux-amd64.tar.gz) + * [Linux AArch64](https://gds.oracle.com/download/llvm/archive/llvm-24.0.0-linux-aarch64.tar.gz) + * [macOS x64](https://gds.oracle.com/download/llvm/archive/llvm-24.0.0-macos-amd64.tar.gz) + * [macOS AArch64](https://gds.oracle.com/download/llvm/archive/llvm-24.0.0-macos-aarch64.tar.gz) + * [Windows x64](https://gds.oracle.com/download/llvm/archive/llvm-24.0.0-windows-amd64.zip) - JVM standalone - * [Linux x64](https://gds.oracle.com/api/20220101/artifacts/069B12298BEC49EDE0631718000A11BC/content) - * [Linux AArch64](https://gds.oracle.com/api/20220101/artifacts/069B4EC01CC3519AE0631718000AA34D/content) - * [macOS x64](https://gds.oracle.com/api/20220101/artifacts/07867F4EBC8881ADE0631718000AA7AB/content) - * [macOS AArch64](https://gds.oracle.com/api/20220101/artifacts/069B4EC01CC8519AE0631718000AA34D/content) - * [Windows x64](https://gds.oracle.com/api/20220101/artifacts/07867F4EBC8D81ADE0631718000AA7AB/content) + * [Linux x64](https://gds.oracle.com/download/llvm/archive/llvm-jvm-24.0.0-linux-amd64.tar.gz) + * [Linux AArch64](https://gds.oracle.com/download/llvm/archive/llvm-jvm-24.0.0-linux-aarch64.tar.gz) + * [macOS x64](https://gds.oracle.com/download/llvm/archive/llvm-jvm-24.0.0-macos-amd64.tar.gz) + * [macOS AArch64](https://gds.oracle.com/download/llvm/archive/llvm-jvm-24.0.0-macos-aarch64.tar.gz) + * [Windows x64](https://gds.oracle.com/download/llvm/archive/llvm-jvm-24.0.0-windows-amd64.zip) 2. Unzip the archive: From 8aa5758ea0108172212e0bea705c768e66bb5a50 Mon Sep 17 00:00:00 2001 From: Olya Gupalo Date: Tue, 19 Mar 2024 17:23:04 +0100 Subject: [PATCH 4/4] Update versions --- docs/reference-manual/java-on-truffle/README.md | 4 ++-- docs/reference-manual/llvm/README.md | 4 ++-- docs/reference-manual/wasm/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/reference-manual/java-on-truffle/README.md b/docs/reference-manual/java-on-truffle/README.md index b110b7868853..934ceae1c770 100644 --- a/docs/reference-manual/java-on-truffle/README.md +++ b/docs/reference-manual/java-on-truffle/README.md @@ -28,10 +28,10 @@ Java on Truffle passes the Java Compatibility Kit (JCK or TCK for Java SE). ## Getting Started -As of GraalVM for JDK 21, Java on Truffle (known as Espresso) is available as a standalone distribution. +Java on Truffle (known as Espresso) is available as a standalone distribution. You can download a standalone based on Oracle GraalVM or GraalVM Community Edition. -1. Download the Java on Truffle (Espresso) 23.1 standalone for your operating system: +1. Download the Java on Truffle (Espresso) 24.0 standalone for your operating system: * [Linux x64](https://gds.oracle.com/download/espresso/archive/espresso-java21-24.0.0-linux-amd64.tar.gz) * [Linux AArch64](https://gds.oracle.com/download/espresso/archive/espresso-java21-24.0.0-linux-aarch64.tar.gz) diff --git a/docs/reference-manual/llvm/README.md b/docs/reference-manual/llvm/README.md index e19e0df82633..494e9b7b05af 100644 --- a/docs/reference-manual/llvm/README.md +++ b/docs/reference-manual/llvm/README.md @@ -14,10 +14,10 @@ This allows seamless interoperability with the dynamic languages supported by Gr ## Getting Started -As of GraalVM for JDK 21, the GraalVM LLVM runtime is available as a standalone distribution. +The GraalVM LLVM runtime is available as a standalone distribution. You can download a standalone based on Oracle GraalVM or GraalVM Community Edition. -1. Download the LLVM 23.1 standalone for your operating system: +1. Download the LLVM 24.0 standalone for your operating system: - Native standalone * [Linux x64](https://gds.oracle.com/download/llvm/archive/llvm-24.0.0-linux-amd64.tar.gz) diff --git a/docs/reference-manual/wasm/README.md b/docs/reference-manual/wasm/README.md index b9390a534a42..a10d14523dd6 100644 --- a/docs/reference-manual/wasm/README.md +++ b/docs/reference-manual/wasm/README.md @@ -13,10 +13,10 @@ The support for WebAssembly is in the early stages of its development. ## Getting Started -As of GraalVM for JDK 21, the GraalVM WebAssembly runtime (known as Wasm) is available as a standalone distribution. +The GraalVM WebAssembly runtime (known as Wasm) is available as a standalone distribution. You can download a standalone based on Oracle GraalVM or GraalVM Community Edition. -1. Download the Wasm 23.1 standalone for your operating system: +1. Download the Wasm 24.0 standalone for your operating system: - Native standalone * [Linux x64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.0-linux-amd64.tar.gz) * [Linux AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.0-linux-aarch64.tar.gz)