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 4eebdf5 commit 561d4a5Copy full SHA for 561d4a5
lib/std/Target.zig
@@ -1903,6 +1903,10 @@ pub const Cpu = struct {
1903
.riscv64 => &riscv.cpu.baseline_rv64,
1904
.s390x => &s390x.cpu.arch8, // gcc/clang do not have a generic s390x model.
1905
.sparc => &sparc.cpu.v9, // glibc does not work with 'plain' v8.
1906
+ .sparc64 => switch (os.tag) {
1907
+ .solaris => &sparc.cpu.ultrasparc3,
1908
+ else => generic(arch),
1909
+ },
1910
.x86 => &x86.cpu.pentium4,
1911
.x86_64 => switch (os.tag) {
1912
.driverkit => &x86.cpu.nehalem,
0 commit comments