2015-07-21 80 views
2

我刚刚升级了Cocoapods并运行了pod安装。做一个硬清理并生成后,我发现了以下错误:升级到Cocoapods 0.38之后版本无法使用库未找到

ld: library not found for -lPods-HHRouter clang: error: 
linker command failed with exit code 1 (use -v to see invocation) 

我试着删除每个参考HHRouter和拉动吊舱。它继续给我一个关于另一个吊舱的错误。

Here is what my podfile looks like: 
platform :ios, '8.0' 

# ignore all warnings from all pods 
inhibit_all_warnings! 

pod 'JDStatusBarNotification' 
pod 'HHRouter', '~> 0.1' 
pod 'ViewDeck', '2.2.11' 
pod 'IQKeyboardManager' 
pod 'MagicalRecord' 
pod 'RSKImageCropper', '1.0.0' 
pod 'UICollectionViewLeftAlignedLayout' 
pod 'FLAnimatedImage', '~> 1.0' 
pod 'CRToast', '~> 0.0.7' 
pod 'SDWebImage', '~>3.7' 

我是否缺少任何东西?

+0

更新到豆荚0.38后得到相同的错误。你找到解决方案吗? –

+0

不,尽管0.38.1现在已经出来,但我得到了一个不同的问题。我得到一个“使用未解析的标识符”(每个pod)'“ – Jeremiah

+0

我回到原始错误,0.38.2 – Jeremiah

回答

1

我删除了其他链接器标志背后的所有设置,除了$(继承)以外,它很顺利。

相关问题