Missing file libarclite_iphoneos.a in Xcode 14.3 after update flutter and Xcode

Lucas Schiavini | ルスキラ
2 min readMay 17, 2023

This is a weird error to have. You’re trying to build a flutter app on an ios device, be it on iPhone or simulator and you get this .a error and it's maddening.

This also happens under the name of libarclite_iphonesimulator.a if you're building for the simulator.

Well, the solution I’ve found that works 100% of the time is:

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

sudo mkdir arc

# While executing the above command, the OS will block it
# and give an error. Allow permission from the settings
# and run the command again.

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

You’re welcome.

😗 Enjoy my writing?

If you read more than 2 of my posts and loved them, we have an honor code, meaning I give you value and you hit that subscribe button.

It’s an honor code because I can’t force you to do that, nor will I know if you don’t, I trust you keep your end of the bargain and I will keep my end by continuing to publish weekly posts that bring value to you ;).

Feel free to Buy me a Coffee ☕.

Forward to a friend and let them know where they can subscribe (hint: it’s here).

Join an Exclusive Tech Friendly Community! Connect with like-minded people who are interested in tech, design, startups, and growing online — apply here.

Originally published at https://lucas-schiavini.com on May 17, 2023.

--

--