From 9c83352fdb890c37a7155b7d60767e4cb561fd59 Mon Sep 17 00:00:00 2001 From: Cyrill Leutwiler Date: Tue, 20 May 2025 21:04:58 +0200 Subject: [PATCH] update emsdk Signed-off-by: Cyrill Leutwiler --- .github/actions/get-emsdk/action.yml | 2 +- CHANGELOG.md | 1 + crates/llvm-builder/src/utils.rs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/get-emsdk/action.yml b/.github/actions/get-emsdk/action.yml index 34f501c..dcb8e3d 100644 --- a/.github/actions/get-emsdk/action.yml +++ b/.github/actions/get-emsdk/action.yml @@ -3,7 +3,7 @@ inputs: version: description: "" required: false - default: "3.1.64" + default: "4.0.9" runs: diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f1491f..1faacf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ Supported `polkadot-sdk` rev: `2503.0.1` ### Changed - Supported `polkadot-sdk` version is now `2503.0.1` +- The `emsdk` version is now `4.0.9` ### Fixed diff --git a/crates/llvm-builder/src/utils.rs b/crates/llvm-builder/src/utils.rs index dc4d4c5..4abc16f 100644 --- a/crates/llvm-builder/src/utils.rs +++ b/crates/llvm-builder/src/utils.rs @@ -38,7 +38,7 @@ pub const MUSL_SNAPSHOTS_URL: &str = "https://git.musl-libc.org/cgit/musl/snapsh pub const EMSDK_SOURCE_URL: &str = "https://github.com/emscripten-core/emsdk.git"; /// The emscripten SDK version. -pub const EMSDK_VERSION: &str = "3.1.64"; +pub const EMSDK_VERSION: &str = "4.0.9"; /// The subprocess runner. ///