71

I'm just learning to use cocoapods and am encountering an error when trying to install a pod.

Top of error:

/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.3/lib/ffi/library.rb:275: [BUG] Bus Error at 0x00000001045b8000 ruby 2.6.3p62 (2019-04-16 revision 67580) [universal.arm64e-darwin20]

Bottom of error:

zsh: abort pod install

Have tried the following, as suggested on some threads here and GitHub:

  • Uninstalling and re-installing cocoapod
  • sudo gem install xcodeproj
  • sudo gem update

but nothing seems to be working; the error persists and the .xcworkspace file doesn't appear.

Any help would be much appreciated. Thank you!

turtlespeed
  • 711
  • 1
  • 4
  • 5

3 Answers3

192

If the other solution (sudo arch -x86_64 gem install ffi) does not work for you, try the following one instead:

gem install --user-install ffi -- --enable-libffi-alloc

After that, run pod install or whatever you were trying to do again, but without prefixing it with arch -x86_64.

It worked for me without issues and this way I could also avoid going the Intel emulation (Rosetta 2) way.

I find this solution in an issue filed on the ffi github project.

Raphael
  • 2,691
  • 1
  • 16
  • 21
37

I came across someone having this issue a while ago and I believe one of the suggestions made was to try the following:

install gem using

sudo arch -x86_64 gem install ffi

and then run this

arch -x86_64 pod install

it might work, it might not, I'm not too sure. This is because from the arm64 part of your error message I assume you have an M1 Mac. Either way it's probably worth a try.

CloakedArrow
  • 391
  • 3
  • 8
  • I got an error when trying the first step: /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/yaml.rb:3: warning: It seems your ruby installation is missing psych (for YAML output). To eliminate this warning, please install libyaml and reinstall your ruby. – turtlespeed Jul 31 '21 at 11:45
  • This looks like an issue with libyaml and ruby. Again, I'm not too experienced with working on cocoapods and programming with mac in general but try these steps below: Step 1: brew install libyaml (Check installation) Step 2: brew info libyaml (this should've brought up some text showing version number etc) Step 3: try the above steps I've provided If this works or doesn't work please let me know, as I'm learning as well Thanks. – CloakedArrow Aug 02 '21 at 10:20
  • In some case, run arch -x86_64 pod update to make app build on iOS simulator – Miniapps Feb 02 '22 at 10:31
26

Reinstalling CocoaPods with brew and removing ffi gem solved the issue for me.

sudo gem uninstall cocoapods
sudo gem uninstall ffi
brew install cocoapods
pod install
kandaurov_net
  • 401
  • 4
  • 11