summaryrefslogtreecommitdiffstats
path: root/platform
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2024-09-13 19:31:18 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2024-09-14 18:22:36 +0300
commit8d039146d9e8e14127eb23353afd2a33ed9ef988 (patch)
treefb059dad555f5a683dba701dd9e8a6716ab927f2 /platform
parent74de05a01c8716a42d4e3427f607d7bea76b35e5 (diff)
downloadredot-engine-8d039146d9e8e14127eb23353afd2a33ed9ef988.tar.gz
[macOS] Fix dynamic library lookup for system libraries.
Diffstat (limited to 'platform')
-rw-r--r--platform/macos/os_macos.mm5
1 files changed, 4 insertions, 1 deletions
diff --git a/platform/macos/os_macos.mm b/platform/macos/os_macos.mm
index 3a82514766..d9086b8c38 100644
--- a/platform/macos/os_macos.mm
+++ b/platform/macos/os_macos.mm
@@ -230,7 +230,10 @@ Error OS_MacOS::open_dynamic_library(const String &p_path, void *&p_library_hand
path = get_framework_executable(get_executable_path().get_base_dir().path_join("../Frameworks").path_join(p_path.get_file()));
}
- ERR_FAIL_COND_V(!FileAccess::exists(path), ERR_FILE_NOT_FOUND);
+ if (!FileAccess::exists(path)) {
+ // Try using path as is. macOS system libraries with `/usr/lib/*` path do not exist as physical files and are loaded from shared cache.
+ path = p_path;
+ }
p_library_handle = dlopen(path.utf8().get_data(), RTLD_NOW);
ERR_FAIL_NULL_V_MSG(p_library_handle, ERR_CANT_OPEN, vformat("Can't open dynamic library: %s. Error: %s.", p_path, dlerror()));