From c00bf1a9dd87769bb9a85f46fcdb90e176eda1e8 Mon Sep 17 00:00:00 2001 From: kat Date: Tue, 18 Mar 2025 02:44:54 -0400 Subject: [SharedCache] Resolve x86_64h binaries not being recognized --- view/sharedcache/core/DSCView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/sharedcache/core/DSCView.cpp') diff --git a/view/sharedcache/core/DSCView.cpp b/view/sharedcache/core/DSCView.cpp index c22f8c1f..782bbe30 100644 --- a/view/sharedcache/core/DSCView.cpp +++ b/view/sharedcache/core/DSCView.cpp @@ -80,7 +80,7 @@ bool DSCView::Init() { arch = "aarch64"; } - else if (std::string(magic) == "dyld_v1 x86_64") + else if (std::string(magic) == "dyld_v1 x86_64" || std::string(magic) == "dyld_v1 x86_64h") { arch = "x86_64"; } -- cgit v1.3.1