authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-05-23 12:18:43-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-05-25 18:54:36-07:00
log3e75a3e36b75cc8b85b4e7b1e825a11b0f1e8de1
treed26b822b442d4d7baf047860690e9a79c6a43f35
parente7546f8dfd99e54832c0c68c53f3f03caeaafcc7

Configuration: add new target info


1 files changed, 6 insertions(+), 0 deletions(-)

lib/std/Build/Configuration.zig+6
...@@ -2265,6 +2265,7 @@ pub const TargetQuery = struct {...@@ -2265,6 +2265,7 @@ pub const TargetQuery = struct {
2265 simulator,2265 simulator,
2266 ohos,2266 ohos,
2267 ohoseabi,2267 ohoseabi,
2268 call0,
22682269
2269 default,2270 default,
22702271
...@@ -2297,6 +2298,7 @@ pub const TargetQuery = struct {...@@ -2297,6 +2298,7 @@ pub const TargetQuery = struct {
2297 .simulator => .simulator,2298 .simulator => .simulator,
2298 .ohos => .ohos,2299 .ohos => .ohos,
2299 .ohoseabi => .ohoseabi,2300 .ohoseabi => .ohoseabi,
2301 .call0 => .call0,
2300 };2302 };
2301 }2303 }
23022304
...@@ -2329,6 +2331,7 @@ pub const TargetQuery = struct {...@@ -2329,6 +2331,7 @@ pub const TargetQuery = struct {
2329 .simulator => .simulator,2331 .simulator => .simulator,
2330 .ohos => .ohos,2332 .ohos => .ohos,
2331 .ohoseabi => .ohoseabi,2333 .ohoseabi => .ohoseabi,
2334 .call0 => .call0,
2332 .default => null,2335 .default => null,
2333 };2336 };
2334 }2337 }
...@@ -2357,6 +2360,7 @@ pub const TargetQuery = struct {...@@ -2357,6 +2360,7 @@ pub const TargetQuery = struct {
2357 loongarch32,2360 loongarch32,
2358 loongarch64,2361 loongarch64,
2359 m68k,2362 m68k,
2363 m88k,
2360 microblaze,2364 microblaze,
2361 microblazeel,2365 microblazeel,
2362 mips,2366 mips,
...@@ -2421,6 +2425,7 @@ pub const TargetQuery = struct {...@@ -2421,6 +2425,7 @@ pub const TargetQuery = struct {
2421 .loongarch32 => .loongarch32,2425 .loongarch32 => .loongarch32,
2422 .loongarch64 => .loongarch64,2426 .loongarch64 => .loongarch64,
2423 .m68k => .m68k,2427 .m68k => .m68k,
2428 .m88k => .m88k,
2424 .microblaze => .microblaze,2429 .microblaze => .microblaze,
2425 .microblazeel => .microblazeel,2430 .microblazeel => .microblazeel,
2426 .mips => .mips,2431 .mips => .mips,
...@@ -2485,6 +2490,7 @@ pub const TargetQuery = struct {...@@ -2485,6 +2490,7 @@ pub const TargetQuery = struct {
2485 .loongarch32 => .loongarch32,2490 .loongarch32 => .loongarch32,
2486 .loongarch64 => .loongarch64,2491 .loongarch64 => .loongarch64,
2487 .m68k => .m68k,2492 .m68k => .m68k,
2493 .m88k => .m88k,
2488 .microblaze => .microblaze,2494 .microblaze => .microblaze,
2489 .microblazeel => .microblazeel,2495 .microblazeel => .microblazeel,
2490 .mips => .mips,2496 .mips => .mips,