真机 iOS10 beta 版系统在 Xcode8 beta 下编译报错 library not found for -lcrt1.3.1.o的解决办法

 

clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of iOS 7
clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of iOS 7
ld: library not found for -lcrt1.3.1.o
clang: error: linker command failed with exit code 1 (use -v to see invocation)

一个错误,两个警告(两个警告不能忽略,非常重要)

先把工程支持的最低版本5.1.1提高到 7.0 再运行一下,现在报51个错误 ,都是c++的错误一个是二维码扫描的一个是高德地图的静态库

真机 iOS10 beta 版系统在 Xcode8 beta 下编译报错 library not found for -lcrt1.3.1.o的解决办法_第1张图片

 

到Build Phases -> Link Binary With Libraries 添加所有c++的类库,如下

 

真机 iOS10 beta 版系统在 Xcode8 beta 下编译报错 library not found for -lcrt1.3.1.o的解决办法_第2张图片

 

在run一下 : Build Succeed!

 

 

你可能感兴趣的:(真机 iOS10 beta 版系统在 Xcode8 beta 下编译报错 library not found for -lcrt1.3.1.o的解决办法)