Skip to content

Commit

Permalink
update: emsdk 3.1.67
Browse files Browse the repository at this point in the history
  • Loading branch information
kassane committed Sep 17, 2024
1 parent 675b9a3 commit 4d7a311
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ pub fn ldcBuildStep(b: *Build, options: DCompileStep) !*std.Build.Step.InstallDi
ldc_exec.addArg("-vcolumns");

const extFile = switch (options.kind) {
.exe, .@"test" => std.Target.exeFileExt(options.target.result),
.lib => if (options.linkage == .static) std.Target.staticLibSuffix(options.target.result) else std.Target.dynamicLibSuffix(options.target.result),
.exe, .@"test" => options.target.result.exeFileExt(),
.lib => if (options.linkage == .static) options.target.result.staticLibSuffix() else options.target.result.dynamicLibSuffix(),
.obj => if (options.target.result.os.tag == .windows) ".obj" else ".o",
};
// object file output (zig-cache/o/{hash_id}/*.o)
Expand Down
4 changes: 2 additions & 2 deletions build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
.hash = "1220e3bfc93a0cf459fd9984a9d6f5f8664ce34982b9c11f75973f6341c29baae2b8",
},
.emsdk = .{
.url = "git+https://github.com/emscripten-core/emsdk#3.1.66",
.hash = "1220146d92ca77f3cabb151fd035f6fa2ea03481ea07f3358ec912f17acdba791a8a",
.url = "git+https://github.com/emscripten-core/emsdk#3.1.67",
.hash = "12208a21e4a62ced46244c44c6215ff99c03c0d384ec3afea04b32c4b8ecb1baa41a",
},
.shdc = .{
.url = "git+https://github.com/floooh/sokol-tools-bin#c28c168552817738639cb3b81484bbd88b723388",
Expand Down

0 comments on commit 4d7a311

Please sign in to comment.