美文网首页
升级xcode10.1 报错,library not found

升级xcode10.1 报错,library not found

作者: 火山脚下 | 来源:发表于2020-01-06 10:46 被阅读0次

    1.报错问题 library not found for -lstdc++.6.0.9

    报错:librarynotfoundfor-libstdc++.6.0.9libstdc++、libstdc++.6、libstdc++6.0.9OpenCV静态链接libstdc++

    image

    无论是你 C++ 跨平台编写,还是你引入了某个SDK其内部依赖这个libstdc++,都会导致整个工程编译不通过,报出Undefined symbols,C++ 的List找不到了,目前发现高德地图有这个库

    临时解决办法

    拷贝缺失的 libstdc++、libstdc++.6、libstdc++6.0.9

    可以从别的电脑XCode9的目录里,把缺失的.tbd文件拷贝过来,要记得拷贝2套,一套是模拟器的,一套是设备的,

    以下为路径(注意不同版本的sdk 路径不同需要自己替换)

    1.真机环境:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/
    2.模拟器环境:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/

    对于不方便操作的同学,我将自己拷贝的**libstdc++6.0.9.tbd放出来,大家有需要可以下载。

    https://pan.baidu.com/s/1mp5oargUwt9OHGDCP2jbLA

    如果上面不行,则用下面的:
    下载Xcode10中删除的libstdc++库

    参考 https://www.jianshu.com/p/0a80ac6b820c

    相关文章

      网友评论

          本文标题:升级xcode10.1 报错,library not found

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