diff options
Diffstat (limited to 'src/codegen/llvm.zig')
| -rw-r--r-- | src/codegen/llvm.zig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig index af6c890861..94fb1de8c4 100644 --- a/src/codegen/llvm.zig +++ b/src/codegen/llvm.zig @@ -28,6 +28,7 @@ pub fn targetTriple(allocator: *Allocator, target: std.Target) ![:0]u8 { .avr => "avr", .bpfel => "bpfel", .bpfeb => "bpfeb", + .csky => "csky", .hexagon => "hexagon", .mips => "mips", .mipsel => "mipsel", @@ -35,6 +36,7 @@ pub fn targetTriple(allocator: *Allocator, target: std.Target) ![:0]u8 { .mips64el => "mips64el", .msp430 => "msp430", .powerpc => "powerpc", + .powerpcle => "powerpcle", .powerpc64 => "powerpc64", .powerpc64le => "powerpc64le", .r600 => "r600", @@ -91,11 +93,11 @@ pub fn targetTriple(allocator: *Allocator, target: std.Target) ![:0]u8 { .openbsd => "openbsd", .solaris => "solaris", .windows => "windows", + .zos => "zos", .haiku => "haiku", .minix => "minix", .rtems => "rtems", .nacl => "nacl", - .cnk => "cnk", .aix => "aix", .cuda => "cuda", .nvcl => "nvcl", @@ -126,6 +128,7 @@ pub fn targetTriple(allocator: *Allocator, target: std.Target) ![:0]u8 { .gnueabi => "gnueabi", .gnueabihf => "gnueabihf", .gnux32 => "gnux32", + .gnuilp32 => "gnuilp32", .code16 => "code16", .eabi => "eabi", .eabihf => "eabihf", |
