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 4b37257 commit b5e7cfeCopy full SHA for b5e7cfe
lib/std/Target.zig
@@ -1889,6 +1889,10 @@ pub const Cpu = struct {
1889
.riscv64, .riscv64be => &riscv.cpu.baseline_rv64,
1890
.s390x => &s390x.cpu.arch8, // gcc/clang do not have a generic s390x model.
1891
.sparc => &sparc.cpu.v9, // glibc does not work with 'plain' v8.
1892
+ .sparc64 => switch (os.tag) {
1893
+ .solaris => &sparc.cpu.ultrasparc3,
1894
+ else => generic(arch),
1895
+ },
1896
.x86 => &x86.cpu.pentium4,
1897
.x86_64 => switch (os.tag) {
1898
.driverkit => &x86.cpu.nehalem,
0 commit comments