summaryrefslogtreecommitdiffstats
path: root/Source/bmalloc/bmalloc/darwin/BSoftLinking.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/bmalloc/bmalloc/darwin/BSoftLinking.h')
-rw-r--r--Source/bmalloc/bmalloc/darwin/BSoftLinking.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/bmalloc/bmalloc/darwin/BSoftLinking.h b/Source/bmalloc/bmalloc/darwin/BSoftLinking.h
index 0656f0c6b..36a9fcf12 100644
--- a/Source/bmalloc/bmalloc/darwin/BSoftLinking.h
+++ b/Source/bmalloc/bmalloc/darwin/BSoftLinking.h
@@ -29,13 +29,13 @@
#include <dlfcn.h>
#include <mutex>
-#define BSOFT_LINK_FRAMEWORK(framework) \
+#define BSOFT_LINK_PRIVATE_FRAMEWORK(framework) \
static void* framework##Library() \
{ \
static void* frameworkLibrary; \
static std::once_flag once; \
std::call_once(once, [] { \
- frameworkLibrary = dlopen("/System/Library/Frameworks/" #framework ".framework/" #framework, RTLD_NOW); \
+ frameworkLibrary = dlopen("/System/Library/PrivateFrameworks/" #framework ".framework/" #framework, RTLD_NOW); \
RELEASE_BASSERT_WITH_MESSAGE(frameworkLibrary, "%s", dlerror()); \
}); \
return frameworkLibrary; \