mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:24:33 +01:00
std.Target: Remove coreclr ABI specifier.
This was added to LLVM in 2015 for the LLILC project, which was discontinued in
~2018, and subsequently archived in 2022.
933b58d00f
This commit is contained in:
parent
af8205e25e
commit
5e82e90dbf
4 changed files with 0 additions and 4 deletions
1
lib/compiler/aro/aro/target.zig
vendored
1
lib/compiler/aro/aro/target.zig
vendored
|
|
@ -742,7 +742,6 @@ pub fn toLLVMTriple(target: std.Target, buf: []u8) []const u8 {
|
|||
.msvc => "msvc",
|
||||
.itanium => "itanium",
|
||||
.cygnus => "cygnus",
|
||||
.coreclr => "coreclr",
|
||||
.simulator => "simulator",
|
||||
.macabi => "macabi",
|
||||
.pixel => "pixel",
|
||||
|
|
|
|||
|
|
@ -634,7 +634,6 @@ pub const Abi = enum {
|
|||
msvc,
|
||||
itanium,
|
||||
cygnus,
|
||||
coreclr,
|
||||
simulator,
|
||||
macabi,
|
||||
pixel,
|
||||
|
|
|
|||
|
|
@ -250,7 +250,6 @@ fn libCGenericName(target: std.Target) [:0]const u8 {
|
|||
.msvc,
|
||||
.itanium,
|
||||
.cygnus,
|
||||
.coreclr,
|
||||
.simulator,
|
||||
.macabi,
|
||||
=> unreachable,
|
||||
|
|
|
|||
|
|
@ -187,7 +187,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 {
|
|||
.msvc => "msvc",
|
||||
.itanium => "itanium",
|
||||
.cygnus => "cygnus",
|
||||
.coreclr => "coreclr",
|
||||
.simulator => "simulator",
|
||||
.macabi => "macabi",
|
||||
.pixel => "pixel",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue