File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 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
66
77Add ` zemscripten ` and (optionally) ` emsdk ` to your build.zig.zon dependencies
88``` 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
1010```
1111
1212Emsdk 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 11const builtin = @import ("builtin" );
22const std = @import ("std" );
33
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 " ;
77pub const emsdk_version = emsdk_ver_major ++ "." ++ emsdk_ver_minor ++ "." ++ emsdk_ver_tiny ;
88
99pub fn build (b : * std.Build ) void {
You can’t perform that action at this time.
0 commit comments