Skip to content

Commit 4179b4f

Browse files
committed
[GR-63744] Update GraalWasm standalone download urls.
PullRequest: graal/20455
2 parents f892da3 + 29756f7 commit 4179b4f

File tree

2 files changed

+28
-14
lines changed

2 files changed

+28
-14
lines changed

wasm/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,17 +94,17 @@ GraalWasm is also available as a standalone distribution.
9494
9595
1. Download the distribution for your operating system:
9696
- Native standalone
97-
* [Linux x64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.1-linux-amd64.tar.gz)
98-
* [Linux AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.1-linux-aarch64.tar.gz)
99-
* [macOS x64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.1-macos-amd64.tar.gz)
100-
* [macOS AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.1-macos-aarch64.tar.gz)
101-
* [Windows x64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.0.1-windows-amd64.zip)
97+
* [Linux x64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.2.0-linux-amd64.tar.gz)
98+
* [Linux AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.2.0-linux-aarch64.tar.gz)
99+
* [macOS x64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.2.0-macos-amd64.tar.gz)
100+
* [macOS AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.2.0-macos-aarch64.tar.gz)
101+
* [Windows x64](https://gds.oracle.com/download/wasm/archive/graalwasm-24.2.0-windows-amd64.zip)
102102
- JVM standalone
103-
* [Linux x64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.0.1-linux-amd64.tar.gz)
104-
* [Linux AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.0.1-linux-aarch64.tar.gz)
105-
* [macOS x64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.0.1-macos-amd64.tar.gz)
106-
* [macOS AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.0.1-macos-aarch64.tar.gz)
107-
* [Windows x64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.0.1-windows-amd64.zip)
103+
* [Linux x64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.2.0-linux-amd64.tar.gz)
104+
* [Linux AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.2.0-linux-aarch64.tar.gz)
105+
* [macOS x64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.2.0-macos-amd64.tar.gz)
106+
* [macOS AArch64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.2.0-macos-aarch64.tar.gz)
107+
* [Windows x64](https://gds.oracle.com/download/wasm/archive/graalwasm-jvm-24.2.0-windows-amd64.zip)
108108
109109
2. Unzip the archive:
110110

wasm/docs/contributor/Building.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22

33
## Prerequisites
44

5+
### Required dependencies
6+
57
- Python 3 (required by `mx`)
6-
- GIT (to download, update, and locate repositories)
7-
- JDK 11+
8-
- emscripten or wasi-sdk for translating C files
8+
- `git` (to download, update, and locate repositories)
9+
- [JDK 21+](https://www.oracle.com/java/technologies/downloads/)
10+
11+
### Optional dependencies
12+
- [WABT (WebAssembly Binary Toolkit)](https://github.com/WebAssembly/wabt) for translating _.wat_ files
13+
- [Emscripten](https://emscripten.org/docs/getting_started/downloads.html) or [WASI SDK](https://github.com/WebAssembly/wasi-sdk) for translating C files
914

1015
## Building
1116

@@ -37,7 +42,16 @@ We summarize the basic steps below:
3742

3843
5. Build the project:
3944
```bash
40-
$ mx --dy /truffle,/compiler build
45+
$ mx --dynamicimports /compiler build
4146
```
4247

4348
These steps will build the `wasm.jar` file in the `mxbuild/dists/jdk<version>` directory, which contains GraalWasm.
49+
50+
## Testing
51+
52+
To run a _.wasm_ file, you can use the following command:
53+
```bash
54+
$ mx --dynamicimports /compiler wasm somefile.wasm
55+
```
56+
57+
For instructions how to run the tests, see [Tests and Benchmarks](TestsAndBenchmarks.md).

0 commit comments

Comments
 (0)