From 030793511c955b639927de123e60245829db9597 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Thu, 18 Jul 2024 11:03:53 +0900 Subject: [PATCH 1/2] README.md: document rust requirement Fixes https://github.com/WebAssembly/wasi-sdk/issues/450 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9632be985..a38c56717 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ The Wasm-sdk's build process needs some packages : * `clang` * `ninja` * `python3` +* The latest rust toolchain Please refer to your OS documentation to install those packages. From 16ef5d13910670979139280fe4750b2bfecabbf9 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Thu, 29 Aug 2024 13:26:07 +0900 Subject: [PATCH 2/2] README.md: drop "latest" from rust requirement it seems that the build issue mentioned in https://github.com/WebAssembly/wasi-sdk/issues/450 has been fixed by wasm-component-ld 0.5.6. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a38c56717..649340581 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ The Wasm-sdk's build process needs some packages : * `clang` * `ninja` * `python3` -* The latest rust toolchain +* rust toolchain (`cargo` and dependencies) Please refer to your OS documentation to install those packages.