在安装CocoaPods时 出现 OTHER_LDFLAGS 错

2015-12-16  本文已影响613人  bc3d3e66fba3

在 pod install后出现如下提示:

[!] The target `项目名 [Debug]` overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Pods.xcconfig'.

- Use the `$(inherited)` flag, or

- Remove the build settings from the target.

[!] The target `项目名 [Debug - Release]` overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Pods.xcconfig'.

- Use the `$(inherited)` flag, or

- Remove the build settings from the target

解决:

在 Finder 中找到项目名.xcodeproj,右键选择显示包内容

用文本编辑器打开project.pbxproj,搜索OTHER_LDFLAGS

若项目未运行pod install

则会看到2处类似格式的语句

OTHER_LDFLAGS = "";

将其删除后运行

pod install

即可

若已运行

pod install

则删除2处如下格式的语句

<key>OTHER_LDFLAGS</key>

<string></string>

上一篇下一篇

猜你喜欢

热点阅读