BetaCat_HA
BetaCat_HA
Published on 2022-07-18 / 37 Visits
0
0

在Apple Silicon上使用CocoaPods

版本是否兼容
M1系列
M2及更新系列未测试(理论上可行)

在Apple Silicon上运行“pod install”时,可能会遇到以下错误提示:

You may have encountered a bug in the Ruby interpreter or extension libraries.

若要解决,请运行:

sudo arch -x86_64 gem install ffi

并使用以下指令重试:

arch -x86_64 pod install

Comment