Skip to content

Commit

Permalink
chore: add arm build for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
hendriknielaender committed Apr 9, 2024
1 parent d747ec3 commit 7cbc8c7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const CrossTargetInfo = struct {
name: []const u8,
};
// Semantic version of your application
const version = std.SemanticVersion{ .major = 0, .minor = 3, .patch = 0 };
const version = std.SemanticVersion{ .major = 0, .minor = 3, .patch = 1 };

const min_zig_string = "0.12.0-dev.3522+b88ae8dbd";

Expand Down Expand Up @@ -65,6 +65,10 @@ pub fn build(b: *std.Build) void {
.cpu_arch = .x86_64,
.os_tag = .macos,
},
.{
.cpu_arch = .aarch64,
.os_tag = .macos,
},
};

for (release_targets) |target_query| {
Expand Down

0 comments on commit 7cbc8c7

Please sign in to comment.