美文网首页
Command Libtool failed with a no

Command Libtool failed with a no

作者: 充满活力的早晨 | 来源:发表于2019-09-16 09:09 被阅读0次

    bug

    error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't locate file for: -lPods-XXX
    error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: file: -lPods-XXX is not an object file (not allowed in a library)
    

    出现该错误是因为libtool 工具连接的文件不存在导致的.

    查找问题
    +1. 找到报错的target
    +2. 切换工程到target->Build Phases->Link Binary With Libaries
    +3. 查看该文件,如果是置灰的,说明是该文件连接处问题了.

    解决办法
    我出现的错误是这样的.我的主工程中包含framework.


    我修改了TestFramework 中的配置项



    正常是这样的


    工程采用pod 方式管理.当我pod install 的时候 ,run工程报错.这是因为pod 根据该参数进行了realase路径配置,而我们run的环境是debug环境,因此,在debug环境中查找不到文件,因此报错了.

    解决方式就是检查工程配置文件,不要修改依赖环境产生变化的配置信息.

    相关文章

      网友评论

          本文标题:Command Libtool failed with a no

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