💬

Error (Xcode): DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_...

2023/09/27に公開

問題

flutter build ipa --release実行時、下記エラー発生。

Error (Xcode): DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead

原因

  • xcode のバージョンが 15 以上の場合、cocoapods のバージョンを 1.13.0 以上にバージョンアップする必要がある様子。

対策

cocoapods をバージョンアップする。

# xcode version
xcodebuild -version

# cocoapods version
pod --version

# cocoapods version up
brew upgrade cocoapods

# cocoapods version
pod --version

参考

https://github.com/CocoaPods/CocoaPods/issues/12065

以上

Discussion