Skip to content

Commit 7e1d818

Browse files
authored
upgrade emsdk to 4.0.23 (#27029)
### Description upgrade emsdk to 4.0.23 from 4.0.21 ### Motivation and Context This version fixes a problem that fails the build under windows when using emscan-deps.bat.
1 parent 50e3362 commit 7e1d818

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
[submodule "cmake/external/emsdk"]
88
path = cmake/external/emsdk
99
url = https://github.com/emscripten-core/emsdk.git
10-
branch = 4.0.21
10+
branch = 4.0.23

tools/ci_build/build_args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def add_webassembly_args(parser: argparse.ArgumentParser) -> None:
372372
"""Adds arguments for WebAssembly (WASM) platform builds."""
373373
parser.add_argument("--build_wasm", action="store_true", help="Build for WebAssembly.")
374374
parser.add_argument("--build_wasm_static_lib", action="store_true", help="Build WebAssembly static library.")
375-
parser.add_argument("--emsdk_version", default="4.0.21", help="Specify version of emsdk.")
375+
parser.add_argument("--emsdk_version", default="4.0.23", help="Specify version of emsdk.")
376376
parser.add_argument(
377377
"--enable_wasm_jspi", action="store_true", help="Enable WebAssembly JavaScript Promise Integration."
378378
)

tools/ci_build/github/azure-pipelines/templates/linux-wasm-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@ jobs:
9696
- script: |
9797
set -ex
9898
cd '$(Build.SourcesDirectory)/cmake/external/emsdk'
99-
./emsdk install 4.0.21 ccache-git-emscripten-64bit
100-
./emsdk activate 4.0.21 ccache-git-emscripten-64bit
99+
./emsdk install 4.0.23 ccache-git-emscripten-64bit
100+
./emsdk activate 4.0.23 ccache-git-emscripten-64bit
101101
displayName: 'emsdk install and activate ccache for emscripten'
102102
- ${{if eq(parameters.WithCache, false)}}:
103103
- script: |
104104
set -ex
105105
cd '$(Build.SourcesDirectory)/cmake/external/emsdk'
106-
./emsdk install 4.0.21
107-
./emsdk activate 4.0.21
106+
./emsdk install 4.0.23
107+
./emsdk activate 4.0.23
108108
displayName: 'emsdk install and activate ccache for emscripten'
109109
110110
- template: build-linux-wasm-step.yml

0 commit comments

Comments
 (0)