diff options
| author | kat <kat@vector35.com> | 2025-03-18 02:44:54 -0400 |
|---|---|---|
| committer | kat <kat@vector35.com> | 2025-03-18 02:44:54 -0400 |
| commit | c00bf1a9dd87769bb9a85f46fcdb90e176eda1e8 (patch) | |
| tree | 83db59bc76c0c284d1537fbfe6b3ab998b07ba2d /view/sharedcache | |
| parent | eeb1402948a3bc9ef66635f42229ab165b163285 (diff) | |
[SharedCache] Resolve x86_64h binaries not being recognized
Diffstat (limited to 'view/sharedcache')
| -rw-r--r-- | view/sharedcache/core/DSCView.cpp | 2 |
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"; } |
