SDK does not contain 'libarclite' at the path...

2024. 12. 3. 13:58Programming/Swift

반응형

# 오랜만에 Xcode를 실행시켜서 그동안 관리를 못했던 앱을 살짝 건드려보았습니다.

 - 너무 오래 관리를 하지 않아서 그런지 새롭게 시작하는 기분이라 너무 하기가 싫더라구요^^;;

 

* pod install 를 하려고 보니 아래와 같은 에러가 나옵니다.

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

 

 

Xcode 14.3 이상 버전에서 발생된 문제라고 합니다.

Podfile에 아래와 같이 추가/수정하니 정상적으로 작동했습니다.

post_install do |installer|
    installer.generated_projects.each do |project|
        project.targets.each do |target|
            target.build_configurations.each do |config|
                config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
            end
        end
    end
end

 

참고한 링크 입니다.

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

 

 

 

반응형