ld: file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/

最近升级Xcode 14.3之后,执行repo push 命令的时候,遇到了下main的错误

ld: file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a
clang: error: linker command failed with exit code 1 (use -v to see invocation)

如图


但是网上翻了好久,发现下面这句话才是关键
ld: file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/_第1张图片

解决方法,
进入该路径下

/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/

没有acr文件的话,自己创建一个,并下载下面这些.a文件,放到arc文件夹中
下载链接 link
ld: file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/_第2张图片

还有注意的一点,这次报错也报了下面的错误

xcodebuild: Returned an unsuccessful exit code.

但是这句话是一句很笼统的报错,我们一定要耐心的往上面翻log ,有时候要翻很多才能找到,一定要往上翻, 一定要往上翻,一定要往上翻

你可能感兴趣的:(xcode,pod)