From 5a3567a56a47c1ea3722f8fa238d377d4801d654 Mon Sep 17 00:00:00 2001 From: Masashi Yoshimura Date: Mon, 17 Feb 2025 23:53:16 +0900 Subject: [PATCH] Add comment for ARM64 package installation to README.md (#515) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hi! I added `WASI_ARCH=arm64` command for the arm64 package version to the installation command’s comment. I thought this would make the command more clear. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c3c0dfa..a274301 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ A typical installation from the release binaries might look like the following: ```shell script WASI_OS=linux -WASI_ARCH=x86_64 +WASI_ARCH=x86_64 # or 'arm64' if running on arm64 host WASI_VERSION=24 WASI_VERSION_FULL=${WASI_VERSION}.0 wget https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_VERSION}/wasi-sdk-${WASI_VERSION_FULL}-${WASI_ARCH}-${WASI_OS}.tar.gz