error in Xcode File not found:odeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a

error in Xcode File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a

解决办法:
https://developer.apple.com/forums/thread/728021

Xcode 14 only supports building for a deployment target of iOS 11. libarclite was necessary for older OS versions, but is now obsolete. If you’re encountering errors referring to this library, you should audit every target in your project for those that declare support for a minimum deployment target under iOS 11, and update them to at least iOS 11, or something more recent than that. You should not modify your Xcode installation to resolve this.

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