diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-08-05 09:52:52 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-05 09:52:52 -0700 |
| commit | fab5df4028f686a69330982b41ee880b5bdd4e04 (patch) | |
| tree | 4f74441cd6af69aa5dee5273c044ede0ddd8c392 /lib/std/Target.zig | |
| parent | 388248ad337e0bbca05f2f40bf42c46bcdc61e47 (diff) | |
| parent | 27775f1a9eecc6142834affb524eadd33b9e56b7 (diff) | |
| download | zig-fab5df4028f686a69330982b41ee880b5bdd4e04.tar.gz zig-fab5df4028f686a69330982b41ee880b5bdd4e04.zip | |
Merge pull request #20934 from alexrp/sparc32-leon3
`std.Target`: Bump baseline CPU for sparc32 to v9; add `sparcv9-linux-gnu` to `process_headers.zig`
Diffstat (limited to 'lib/std/Target.zig')
| -rw-r--r-- | lib/std/Target.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/Target.zig b/lib/std/Target.zig index 8a21a7256f..4e43055810 100644 --- a/lib/std/Target.zig +++ b/lib/std/Target.zig @@ -1502,7 +1502,7 @@ pub const Cpu = struct { .x86 => &x86.cpu.pentium4, .nvptx, .nvptx64 => &nvptx.cpu.sm_20, .s390x => &s390x.cpu.arch8, - .sparc => &sparc.cpu.v8, + .sparc => &sparc.cpu.v9, // glibc does not work with 'plain' v8. .loongarch64 => &loongarch.cpu.loongarch64, else => generic(arch), |
