Rename custom JavaScriptCore.framework to JSC.framework

Reviewed By: michalgr

Differential Revision: D3709748

fbshipit-source-id: bc2a7124127944c5d24e584747074065eefa1207
This commit is contained in:
Ben Nham 2016-08-15 15:11:13 -07:00 committed by Facebook Github Bot 6
parent f8ce2f9f70
commit 53c5c4f8c3

View File

@ -21,7 +21,7 @@ static void *RCTCustomLibraryHandler(void)
static dispatch_once_t token;
static void *handler;
dispatch_once(&token, ^{
handler = dlopen("@executable_path/Frameworks/JavaScriptCore.framework/JavaScriptCore", RTLD_LAZY | RTLD_LOCAL);
handler = dlopen("@executable_path/Frameworks/JSC.framework/JSC", RTLD_LAZY | RTLD_LOCAL);
if (!handler) {
const char *err = dlerror();