美文网首页
在安装CocoaPods时 出现 OTHER_LDFLAGS 错

在安装CocoaPods时 出现 OTHER_LDFLAGS 错

作者: bc3d3e66fba3 | 来源:发表于2015-12-16 15:35 被阅读613次

    在 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>

    相关文章

      网友评论

          本文标题:在安装CocoaPods时 出现 OTHER_LDFLAGS 错

          本文链接:https://www.haomeiwen.com/subject/whtphttx.html