gpt4 book ai didi

ios - 更新 swift 版本和 pod 后的链接器错误

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:18:46 25 4
gpt4 key购买 nike

我正在使用 pod 安装 Alamofire 并遇到编译时错误。对此有很多问题,但是:

删除派生数据和更新 pod 对我不起作用。

这是错误:

Alamofire/Alamofire.framework/Alamofire compiled with newer version of Swift language (3.0) than previous files (2.0) for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation)

最佳答案

更新 pod 文件中的以下内容:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '2.3' || '3.0'
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = 'NO'
end
end
end

关于ios - 更新 swift 版本和 pod 后的链接器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40859316/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com