반응형
기존에 잘 빌드되던 프로젝트가 Xcode 15로 업데이트 후,
'DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead'
와 같은 오류가 발생했음.
검색을 해본 결과 나와 오류를 겪는 사람이 몇몇 있있고, Pod과 관련이 있어서 난 문제..
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
xcconfig_path = config.base_configuration_reference.real_path
xcconfig = File.read(xcconfig_path)
xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
end
end
end
Podfile 마지막에 작성하여 pod install로 문제를 해결할 수 있었음
반응형
'Xcode' 카테고리의 다른 글
[Xcode] Xcode15 이하 버전에서 iOS 17 디바이스 실행하기 (0) | 2023.09.19 |
---|