๋ฌธ์ œ ์ƒํ™ฉ

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

๋นŒ๋“œ ์‹œ ์ด๋Ÿฐ ๋ฌธ๊ตฌ์˜ ์˜ค๋ฅ˜ ๋ฐœ์ƒ

 

ํ•ด๊ฒฐ

Xcode 14.3 ์—…๋ฐ์ดํŠธ์—์„œ Pod 8.0์„ ์ง€์›ํ•˜์ง€ ์•Š์•„์„œ ์ƒ๊ธด ์˜ค๋ฅ˜๋‹ค.

Pod ์ตœ์†Œ์ง€์› ๋ฒ„์ „์„ 11.0์œผ๋กœ ๋ฐ”๊ฟ”์ฃผ๋ฉด ํ•ด๊ฒฐ๋œ๋‹ค.

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
    end
  end
end

PodFile์— ์ถ”๊ฐ€ ํ›„, pod install ํ•œ ๋‹ค์Œ build


Ref

https://stackoverflow.com/questions/75574268/missing-file-libarclite-iphoneos-a-xcode-14-3

 

Missing file libarclite_iphoneos.a (Xcode 14.3)

After installing Xcode 14.3 in order to run my app on my iOS 16.3 iPhone XS. I get the following error: File not found: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.

stackoverflow.com

 

๋ฐ˜์‘ํ˜•
JerryiOS