We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5edfb8a commit 27e5f0fCopy full SHA for 27e5f0f
zigup.zig
@@ -10,6 +10,7 @@ const fixdeletetree = @import("fixdeletetree.zig");
10
const arch = switch (builtin.cpu.arch) {
11
.aarch64 => "aarch64",
12
.arm => "armv7a",
13
+ .powerpc64 => "powerpc64",
14
.powerpc64le => "powerpc64le",
15
.riscv64 => "riscv64",
16
.s390x => "s390x",
@@ -18,8 +19,10 @@ const arch = switch (builtin.cpu.arch) {
18
19
else => @compileError("Unsupported CPU Architecture"),
20
};
21
const os = switch (builtin.os.tag) {
22
+ .freebsd => "freebsd",
23
.linux => "linux",
24
.macos => "macos",
25
+ .netbsd => "netbsd",
26
.windows => "windows",
27
else => @compileError("Unsupported OS"),
28
0 commit comments