summaryrefslogtreecommitdiff
path: root/view/sharedcache/core/DSCView.cpp
diff options
context:
space:
mode:
authorkat <kat@vector35.com>2025-03-18 02:44:54 -0400
committerkat <kat@vector35.com>2025-03-18 02:44:54 -0400
commitc00bf1a9dd87769bb9a85f46fcdb90e176eda1e8 (patch)
tree83db59bc76c0c284d1537fbfe6b3ab998b07ba2d /view/sharedcache/core/DSCView.cpp
parenteeb1402948a3bc9ef66635f42229ab165b163285 (diff)
[SharedCache] Resolve x86_64h binaries not being recognized
Diffstat (limited to 'view/sharedcache/core/DSCView.cpp')
-rw-r--r--view/sharedcache/core/DSCView.cpp2
1 files changed, 1 insertions, 1 deletions
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";
}