美文网首页iOS小模块程序员
Multiple commands produced error

Multiple commands produced error

作者: 4fdbb38ec548 | 来源:发表于2018-09-19 16:52 被阅读770次

    辛劳的我更新了xcode 10,结果果然是bug一大堆
    1.Multiple commands produced error
    修复方法如下:
    In Xcode, go to File->Project/Workspace settings.
    Change the build system to Legacy Build system.
    2.library not found for -lstdc++.6.0.9
    解决方案:这是因为iOS12.0中采用libc++代替lstdc++的动态库,我们可以在target-build Phases-Link Binary With Libraries中将libstdc++.6.0.9.tbd移除掉就可以了
    注:有的项目可能在link Binary With Libraries中没有引入6.0.9还会出现报错情况,这个时候可以全局搜索下6.0.9,看看是不是pod的第三方中引入了此动态库,找到后删掉就可以了(方法同上).

    相关文章

      网友评论

        本文标题:Multiple commands produced error

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