升级到 Cocoapods 0.38 后,由于找不到库,构建失败

After upgrading to Cocoapods 0.38 Build failsdue to library not found

我刚刚升级了 Cocoapods 并 运行 安装了一个 pod。进行彻底清理和构建后,出现以下错误:

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

我尝试删除所有对 HHRouter 的引用并拉取 pod。它继续给我一个关于另一个 pod 的错误。

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'

我错过了什么吗?

我删除了其他链接器标志后面的所有设置,除了 $(inherited),一切顺利。