From 4d7a311d20e39870d6c5cccecc56753c85ec57a0 Mon Sep 17 00:00:00 2001 From: Matheus Catarino Date: Tue, 17 Sep 2024 09:09:03 -0300 Subject: [PATCH] update: emsdk 3.1.67 --- build.zig | 4 ++-- build.zig.zon | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.zig b/build.zig index 01276b7..5a7f951 100644 --- a/build.zig +++ b/build.zig @@ -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) diff --git a/build.zig.zon b/build.zig.zon index f9c4f06..18f8bbf 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -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",