We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d876f2 commit 6c98785Copy full SHA for 6c98785
lib/std/Target.zig
@@ -1852,6 +1852,10 @@ pub const Cpu = struct {
1852
.riscv64 => &riscv.cpu.baseline_rv64,
1853
.s390x => &s390x.cpu.arch8, // gcc/clang do not have a generic s390x model.
1854
.sparc => &sparc.cpu.v9, // glibc does not work with 'plain' v8.
1855
+ .sparc64 => switch (os.tag) {
1856
+ .solaris => &sparc.cpu.ultrasparc3,
1857
+ else => generic(arch),
1858
+ },
1859
.x86 => &x86.cpu.pentium4,
1860
.x86_64 => switch (os.tag) {
1861
.driverkit => &x86.cpu.nehalem,
0 commit comments