std.Target: Change requiresLibC() to return true for aix.

AIX does not have a stable syscall interface; libc is required.
This commit is contained in:
Alex Rønne Petersen 2024-08-08 23:00:20 +02:00
parent fc93ab7182
commit 1e67221f07
No known key found for this signature in database

View File

@ -571,6 +571,7 @@ pub const Os = struct {
pub fn requiresLibC(os: Os) bool {
return switch (os.tag) {
.freebsd,
.aix,
.netbsd,
.driverkit,
.macos,
@ -593,7 +594,6 @@ pub const Os = struct {
.ps3,
.zos,
.rtems,
.aix,
.cuda,
.nvcl,
.amdhsa,