Don't forget to include the Crash Report log file under DiagnosticReports directory in bug reports

Viewed 14083

I run pod install and got this issue on Mac OS M1:

[NOTE] You may have encountered a bug in the Ruby interpreter or extension libraries. Bug reports are welcome. For details: https://www.ruby-lang.org/bugreport.html

[IMPORTANT] Don't forget to include the Crash Report log file under DiagnosticReports directory in bug reports.

enter image description here

1 Answers

Seems it's related to Ruby ffi. Run the following commands:

  1. sudo arch -x86_64 gem install ffi
  2. arch -x86_64 pod install
Related