0

When running my iOS app in Xcode simulator, I'm encountering this build error:

clang: error: SDK does not contain 'libarclite' at the path '/Applications/Xcode.app/Contents/Developer/Toolchains/ XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a'; try increasing the minimum deployment target

How can I resolve this libarclite missing error?

asked Apr 2, 2025 at 11:21
2
  • Does this help? Commented Apr 2, 2025 at 11:32
  • This question is similar to: clang: error: SDK does not contain 'libarclite' at the path. If you believe it’s different, please edit the question, make it clear how it’s different and/or how the answers on that question are not helpful for your problem. Commented Apr 14, 2025 at 20:59

1 Answer 1

-1

This error occurs when your deployment target is set too low for the current Xcode version. Update your minimum iOS deployment target to at least iOS 13.0. Add this to your Podfile:

post_install do |installer|
 installer.pods_project.targets.each do |target|
 target.build_configurations.each do |config|
 config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
 end
 end
end
answered Apr 14, 2025 at 16:37
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.