diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-10-21 19:59:12 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-10-21 19:59:12 -0700 |
| commit | ce5035c07d2f8cab44639262f11a032fb52459b1 (patch) | |
| tree | 6ad1091bc5e49725e451ddae368d733d0bda8c35 /src | |
| parent | 44f8e6a534bd2977c741afdbf5ba9df49bde0fd9 (diff) | |
| parent | 11a9eff36ef3d6dd7dbfec27e7b59d237607f6c9 (diff) | |
| download | zig-ce5035c07d2f8cab44639262f11a032fb52459b1.tar.gz zig-ce5035c07d2f8cab44639262f11a032fb52459b1.zip | |
Merge branch 'kubkon-macos-libc'
closes #6752
closes #5031
Diffstat (limited to 'src')
| -rw-r--r-- | src/target.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/target.zig b/src/target.zig index 9415ddaf70..da022760e7 100644 --- a/src/target.zig +++ b/src/target.zig @@ -54,6 +54,7 @@ pub const available_libcs = [_]ArchOsAbi{ .{ .arch = .x86_64, .os = .linux, .abi = .gnux32 }, .{ .arch = .x86_64, .os = .linux, .abi = .musl }, .{ .arch = .x86_64, .os = .windows, .abi = .gnu }, + .{ .arch = .x86_64, .os = .macos, .abi = .gnu }, }; pub fn libCGenericName(target: std.Target) [:0]const u8 { |
