驱动程序调用中出现意外错误:驱动程序名称无效:SWIFT_EXEC-no-coverage

Unexpected error in driver invocation: invalid driver name: SWIFT_EXEC-no-coverage

在 Xcode 13.2.1 上使用 this 脚本时,Swift 编译器 returns 错误:

SwiftDriver Alamofire normal i386 com.apple.xcode.tools.swift.compiler (in target 'Alamofire' from project 'Pods')
...
error: Unexpected error in driver invocation: invalid driver name: SWIFT_EXEC-no-coverage

可能是因为与脚本有冲突SWIFT_EXEC-no-coverage,有什么办法可以解决这个问题吗?

目前我必须通过注释掉这一行来禁用这个脚本才能编译项目:

#      config.build_settings['SWIFT_EXEC'] = '$(SRCROOT)/../Scripts/SWIFT_EXEC-no-coverage'

因为我们 figured it out offline, now only "swiftc" is the allowed 为 swift 驱动程序命名 - 因此尝试将“SWIFT_EXEC-no-coverage”重命名为“swiftc”(并调整 Podfile 中的值)。