File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Zig build package and shims for [Emscripten](https://emscripten.org) emsdk
6
6
7
7
Add ` zemscripten ` and (optionally) ` emsdk ` to your build.zig.zon dependencies
8
8
``` sh
9
- zig fetch --save https://github.com/emscripten-core/emsdk/archive/refs/tags/3.1.73 .tar.gz
9
+ zig fetch --save https://github.com/emscripten-core/emsdk/archive/refs/tags/4.0.3 .tar.gz
10
10
```
11
11
12
12
Emsdk must be activated before it can be used. You can use ` activateEmsdkStep ` to create a build step for that:
Original file line number Diff line number Diff line change 1
1
const builtin = @import ("builtin" );
2
2
const std = @import ("std" );
3
3
4
- pub const emsdk_ver_major = "3 " ;
5
- pub const emsdk_ver_minor = "1 " ;
6
- pub const emsdk_ver_tiny = "73 " ;
4
+ pub const emsdk_ver_major = "4 " ;
5
+ pub const emsdk_ver_minor = "0 " ;
6
+ pub const emsdk_ver_tiny = "3 " ;
7
7
pub const emsdk_version = emsdk_ver_major ++ "." ++ emsdk_ver_minor ++ "." ++ emsdk_ver_tiny ;
8
8
9
9
pub fn build (b : * std.Build ) void {
You can’t perform that action at this time.
0 commit comments