| ... | ... | @@ -413,13 +413,13 @@ pub fn detectNativeCpuAndFeatures() ?Target.Cpu { |
| 413 | 413 | return core; |
| 414 | 414 | }, |
| 415 | 415 | .sparc64 => { |
| 416 | | return SparcCpuinfoParser.parse(current_arch, f.reader()) catch null; |
| 416 | return SparcCpuinfoParser.parse(current_arch, f.deprecatedReader()) catch null; |
| 417 | 417 | }, |
| 418 | 418 | .powerpc, .powerpcle, .powerpc64, .powerpc64le => { |
| 419 | | return PowerpcCpuinfoParser.parse(current_arch, f.reader()) catch null; |
| 419 | return PowerpcCpuinfoParser.parse(current_arch, f.deprecatedReader()) catch null; |
| 420 | 420 | }, |
| 421 | 421 | .riscv64, .riscv32 => { |
| 422 | | return RiscvCpuinfoParser.parse(current_arch, f.reader()) catch null; |
| 422 | return RiscvCpuinfoParser.parse(current_arch, f.deprecatedReader()) catch null; |
| 423 | 423 | }, |
| 424 | 424 | else => {}, |
| 425 | 425 | } |