| author | |
| committer | |
| log | 3b40b682102917955af0939d6c78bdb16ddd78e7 |
| tree | a6df4a83807a009d30e1719bc344a1f9c0a0d34a |
| parent | 4396373ccb7182defa6cd084646b009de82f0b18 |
Closes #64971 files changed, 1 insertions(+), 1 deletions(-)
src/target.zig+1-1| ... | ... | @@ -130,7 +130,6 @@ pub fn osRequiresLibC(target: std.Target) bool { |
| 130 | 130 | |
| 131 | 131 | pub fn libcNeedsLibUnwind(target: std.Target) bool { |
| 132 | 132 | return switch (target.os.tag) { |
| 133 | .windows, | |
| 134 | 133 | .macosx, |
| 135 | 134 | .ios, |
| 136 | 135 | .watchos, |
| ... | ... | @@ -138,6 +137,7 @@ pub fn libcNeedsLibUnwind(target: std.Target) bool { |
| 138 | 137 | .freestanding, |
| 139 | 138 | => false, |
| 140 | 139 | |
| 140 | .windows => target.abi != .msvc, | |
| 141 | 141 | else => true, |
| 142 | 142 | }; |
| 143 | 143 | } |