From 6798aec462663efa7c2ae2fc81b3abc5a8228367 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Thu, 25 Sep 2025 20:26:47 +0200 Subject: [PATCH] Any Apple cpu running Linux has to be Vortex --- cpuid_arm64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpuid_arm64.c b/cpuid_arm64.c index fd6a9bd478..6af3c499fb 100644 --- a/cpuid_arm64.c +++ b/cpuid_arm64.c @@ -346,7 +346,7 @@ int detect(void) else if (strstr(cpu_implementer, "0x46") && strstr(cpu_part, "0x001")) return CPU_A64FX; // Apple - else if (strstr(cpu_implementer, "0x61") && strstr(cpu_part, "0x022")) + else if (strstr(cpu_implementer, "0x61") /* && strstr(cpu_part, "0x022")*/) return CPU_VORTEX; // Phytium else if (strstr(cpu_implementer, "0x70") && (strstr(cpu_part, "0x660") || strstr(cpu_part, "0x661")