ios - 无法将 Pod 链接到 Calabash 目标
<p><p>我们在 Calabash 目标中集成 CocoaPods 时遇到了一些问题。</p>
<p>目前我们有 4 个目标:</p>
<p><strong>应用</strong>:普通应用目标<br/>
<strong>AppTests</strong>:单元测试目标<br/>
<strong>App-Calabash</strong>:葫芦目标<br/>
<strong>App-API-Stubs</strong>:特殊目标</p>
<p>我们希望在 App、App-Calabash 和 App-API-Stubs 之间共享所有 Pod。
此外,AppTests 和 App-Calabash 必须包含其他库。</p>
<p>这是我们的 Podfile:</p>
<pre><code>source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
link_with 'App', 'App-Calabash', 'App-API-Stubs'
inhibit_all_warnings!
pod 'MagicalRecord', '~> 2.2'
pod 'AFNetworking', '~> 2.3.1'
pod 'ObjectiveSugar', '~> 1.1.0'
pod 'KZPropertyMapper', '~> 2.5.0'
pod 'FXBlurView', '~> 1.6.2'
pod 'OHHTTPStubs', '~> 3.1.5'
pod 'Google-Maps-iOS-SDK', '~> 1.8.1'
pod 'KVOController', '~> 1.0.1'
pod 'Braintree', '~> 3.3.1'
pod 'TTTAttributedLabel', '~> 1.10.1'
pod 'ObjectiveLuhn', '~> 1.0.0'
pod 'CrashlyticsFramework', '~> 2.2.1'
target 'App-Calabash', :exclusive => true do
pod 'Calabash', '~> 0.9.169'
end
target 'AppTests', :exclusive => true do
pod 'Specta', '~> 0.2.1'
pod 'Expecta', '~> 0.3.0'
pod 'OCMock', '~> 3.1.1'
end
</code></pre>
<p>除了 Calabash 之外,所有目标都可以正常构建和运行。<br/>
它提示找不到 <code>Crashlytics/Crashlytics.h</code>。但是即使我们暂时避免使用 Crashlytics,它也会在链接过程中提示 Calabash 库:</p>
<pre><code>ld: warning: directory not found for option '-L/Users/Marco/ios/App/Pods/build/Debug-iphoneos'
ld: file not found: -lPods-App-Calabash-Calabash
clang: error: linker command failed with exit code 1 (use -v to see invocation)
</code></pre>
<p>因此,将 pod 集成到特定目标中似乎出现了严重错误。<br/>
我很确定我错过了一些简单的东西,但我无法弄清楚。 </p>
<p>非常感谢任何帮助。谢谢!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>花了我一上午的时间寻找解决方案。我在这里找到了答案 <a href="http://flexpletives.blogspot.com.es/2014/02/ios7-tdd-w-ocmock-and-xcode5.html" rel="noreferrer noopener nofollow">http://flexpletives.blogspot.com.es/2014/02/ios7-tdd-w-ocmock-and-xcode5.html</a> </p>
<p>转到您的 Calabash 目标 -> build设置 -> 其他链接器标志</p>
<p>删除“-force_load”
添加“-all_load”</p></p>
<p style="font-size: 20px;">关于ios - 无法将 Pod 链接到 Calabash 目标,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/26232612/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/26232612/
</a>
</p>
页:
[1]