DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead in xcode 15

길위에 히피·2024년 2월 16일
0

Flutter

목록 보기
16/44

XCODE 15로 업데이트 이후 project를 building하는동안 다음과 같은 에러가 발생한다.

DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead in xcode 15

우선 아래와 같은 방법을 터미널에서 실행해볼수 있다.

sudo gem update cocoapods
flutter pub cache repair
flutter clean
flutter pub get
cd ios
rm -rf Podfile.lock Pods/ .symlinks Flutter/Flutter.podspec
pod install
pod repo update

위 방법을 해도 실행이 안된다면 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
profile
마음맘은 히피인 일꾼러

0개의 댓글