ios - ParseFacebookUtilsV4 启用位码错误 xcode 7 beta 6
<p><p>首先,我知道与此类似的问题,但没有一个涉及我的问题。我正在使用 Xcode 7 beta 6 和 cocoapods。
这是我的 Podfile:</p>
<pre><code>platform :ios, '8.0'
use_frameworks!
target 'Alfred' do
pod 'PaymentKit', :git => 'https://github.com/stripe/PaymentKit.git'
pod 'SDWebImage', '~>3.7'
pod 'Parse'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'ParseFacebookUtilsV4'
pod 'Fabric'
pod 'Crashlytics'
end
</code></pre>
<p>在为模拟器编译时,一切正常,但在为真实设备(iOS 9 beta 的 iPhone 6)编译时,出现以下错误代码:</p>
<blockquote>
<p>'/Users/username/projectpath/Pods/ParseFacebookUtilsV4/libParseFacebookUtilsV4Lib.a(PFFacebookUtils.o)' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target for architecture arm64</p>
</blockquote>
<p>我已经启用了 ENABLE_BITCODE 标志,但它仍然显示相同的错误。我也尝试再次清理和重建项目。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您实际上需要为那些还不支持位码的库禁用位码。</p>
<p>错误是请链接已为位码编译的静态库。由于您可能不拥有 cocoapods 库,因此您只需在项目中禁用对这些库的位码支持即可。</p>
<p>如果您想要快速而肮脏,只需为您的目标禁用位码(如下所示)。但是您可以更细致地挑选并选择禁用给您带来麻烦的库的位码(更负责任的选择)。</p>
<p> <a href="/image/y6zcn.png" rel="noreferrer noopener nofollow"><img src="/image/y6zcn.png" alt="enter image description here"/></a> </p></p>
<p style="font-size: 20px;">关于ios - ParseFacebookUtilsV4 启用位码错误 xcode 7 beta 6,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32365666/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32365666/
</a>
</p>
页:
[1]