Skip to content

Commit 6848105

Browse files
authored
Merge pull request #6 from ckrowland/main
2 parents 1205795 + 66088f8 commit 6848105

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Zig build package and shims for [Emscripten](https://emscripten.org) emsdk
66

77
Add `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

1212
Emsdk must be activated before it can be used. You can use `activateEmsdkStep` to create a build step for that:

Diff for: build.zig

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
const builtin = @import("builtin");
22
const 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";
77
pub const emsdk_version = emsdk_ver_major ++ "." ++ emsdk_ver_minor ++ "." ++ emsdk_ver_tiny;
88

99
pub fn build(b: *std.Build) void {

0 commit comments

Comments
 (0)