Commit e023199

Eric Bower  ·  2026-05-16 20:58:27 -0400 EDT
parent 34446b7
fix: needs to build on mac as well
1 files changed,  +1, -7
+1, -7
 1@@ -11,13 +11,7 @@ const macos_targets: []const std.Target.Query = &.{
 2 };
 3 
 4 pub fn build(b: *std.Build) void {
 5-    const target = b.standardTargetOptions(.{
 6-        .default_target = .{
 7-            .cpu_arch = .x86_64,
 8-            .os_tag = .linux,
 9-            .abi = .musl,
10-        },
11-    });
12+    const target = b.standardTargetOptions(.{});
13     const optimize = b.standardOptimizeOption(.{});
14     const version = b.option([]const u8, "version", "Version string for release") orelse
15         @as([]const u8, @import("build.zig.zon").version);