[ERROR/XCODE] Error (Xcode): DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead 에러 해결

qianshixun·2023년 9월 22일
0

ERROR

목록 보기
1/2
Error (Xcode): DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead

Mac OS Sonoma 14.0 버전으로 업그레이드 후 xcode 15.0에서 iOS Simulator가 iOS 17.0을 지원하면서 갑자기 에러가 났다.

fire_core를 사용하고 있는데 이게 문제인 것 같다

해결방법은 Podfile에

post_install do |installer|
  installer.pods_project.targets.each do |target|
     flutter_additional_ios_build_settings(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

위 코드를 아래코드 대신에 바꿔서 작성하면 된다

 post_install do |installer|
   installer.pods_project.targets.each do |target|
     flutter_additional_ios_build_settings(target)
   end
 end
profile
My Flutter Develog.

0개의 댓글