std.Target: Change requiresLibC() to return true for aix.
AIX does not have a stable syscall interface; libc is required.
1 files changed, 1 insertions(+), 1 deletions(-)
lib
std
lib/std/Target.zig+1-1
| ... | ... | @@ -571,6 +571,7 @@ pub const Os = struct { |
| 571 | 571 | pub fn requiresLibC(os: Os) bool { |
| 572 | 572 | return switch (os.tag) { |
| 573 | 573 | .freebsd, |
| 574 | .aix, |
| 574 | 575 | .netbsd, |
| 575 | 576 | .driverkit, |
| 576 | 577 | .macos, |
| ... | ... | @@ -593,7 +594,6 @@ pub const Os = struct { |
| 593 | 594 | .ps3, |
| 594 | 595 | .zos, |
| 595 | 596 | .rtems, |
| 596 | | .aix, |
| 597 | 597 | .cuda, |
| 598 | 598 | .nvcl, |
| 599 | 599 | .amdhsa, |