Missing file libarclite_iphoneos.a (Xcode 14.3)

File not found: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a

Open a terminal and go to the following folder:

cd /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/

Create a folder:

Go to System Preferences - Security & Privacy - Full Disk Access - Terminal

sudo mkdir arc
cd  arc
sudo git clone https://github.com/kamyarelyasi/Libarclite-Files.git .

Give the necessary permission:

sudo chmod +x *

Now you will be able to build and run, but not the archive.

To resolve this issue, follow the steps below:

In your Xcode navigate to:

Pods \ Target Support Files \ Pods-Runner or Pods-App  

Open Pods-Runner-frameworks.sh  or Pods-App-frameworks.sh

Find the line: source="$(readlink "${
    
    source}")" 

Replace it by: source="$(readlink -f "${
    
    source}")"

then save
insert image description here

Guess you like

Origin blog.csdn.net/qq_28641023/article/details/130207947