M2 Mac Xcode编译报错 ‘***.framework/‘ for architecture arm64

In /Users/fly/Project/Pods/YYKit/Vendor/WebP.framework/WebP(anim_decode.o), building for iOS Simulator, but linking in object file built for iOS, file '/Users/fly/Project/Pods/YYKit/Vendor/WebP.framework/WebP' for architecture arm64

这是我当时编译模拟器时报的错

1、在 Build Settings 里面先设置EXCLUDED_ARCHS,设置Any iOS Simulator SDK = arm64。

2、在 User-Defind 下面添加EXLUDED_ARCHS,设置arm64

3、在 Podfile 文件中添加一下代码

post_install do |installer|
  installer.generated_projects.each do |project|
    project.targets.each do |target|
      target.build_configurations.each do |config|
            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
            config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
       end
    end
  end
end

重新 pod installer

相关推荐
半桶水专家5 小时前
go语言中package详解
开发语言·golang·xcode
青花瓷20 小时前
C++__XCode工程中Debug版本库向Release版本库的切换
c++·xcode
Rverdoser2 天前
xcode更新完最新版本无法运行调试
xcode
#摩斯先生3 天前
IOS 防截屏实现
ios·xcode
胖虎15 天前
CocoaPods安装步骤详解 - 2024
ios·cocoa·xcode·cocoapods
阿里嘎多8717 天前
GO中的文件操作
开发语言·golang·xcode
lmyuanhang7 天前
ios Framework版本号的问题。
ide·macos·xcode
MrZWCui8 天前
iOS18 取消/适配TabbarController缩放动画
学习·ios·objective-c·xcode·ios18
Narutolxy9 天前
探索开源语音识别的未来:高效利用先进的自动语音识别技术20241030
python·macos·xcode
sysin.org10 天前
Xcode 16.1 (16B40) 发布下载 - Apple 平台 IDE
ide·macos·xcode