SDK "iphoneos" can not be located

关于Mac 下安装多个Xcode 交叉编译libvlc出现的一些问题和解决方法。

执行脚本出现下面的错误:

building arm64...
xcrun -sdk iphoneos clang is unable to create an executable file.

查找原因:

mac$ xcode-select --print-path
/Library/Developer/CommandLineTools

发现是这个Xcode路径判断错误。

mac$ xcodebuild -showsdks
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance

回想起最近安装了另外两个版本的Xcode,应该是这样导致了路径错误。

mac$ ls /Applications/Xcode
Xcode.app/ Xcode2.app/ Xcode3.app/

解决方法:给Xcode命令行工具指定路径

mac$ sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/

参考 https://www.cnblogs.com/zzugyl/p/5438869.html

    原文作者:Rui哥
    原文地址: https://www.jianshu.com/p/c920fd0205fe
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞