From 407b406f349fe0b9660d56d52ba42df7f9985d16 Mon Sep 17 00:00:00 2001 From: joshaber Date: Tue, 6 Oct 2015 16:07:54 -0400 Subject: [PATCH] Don't reference the dylib directly. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://forums.developer.apple.com/thread/4572 is the best reference I could find for this. Apple replaced (some?) dylibs with “text-based stub libraries” (.tbd’s). So we shouldn’t try to reference the dylib directly anymore. --- brightray/brightray.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brightray/brightray.gyp b/brightray/brightray.gyp index b3c4e92e6f..b0ff498dcc 100644 --- a/brightray/brightray.gyp +++ b/brightray/brightray.gyp @@ -153,7 +153,7 @@ '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', # content_browser.gypi: - '$(SDKROOT)/usr/lib/libbsm.dylib', + '-lbsm', # bluetooth.gyp: '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', ],