Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode8.1 cocoapods Abort trap:6 [duplicate]

This is my pod file contents :

pod 'Firebase/Core pod 'Firebase/Auth’ pod 'Firebase/Database’ pod 'Firebase/Storage' pod 'SDWebImage'

The pods install but fail to cretae an xworkspace. It fails with Abort 6. I'm running Xcode 8.1 and on macOS 10.12.2 Beta. I have tried deleting and reinstalling the latest prerelease of pods. Any other solution?

like image 961
Chaitanya Ramji Avatar asked Nov 14 '16 04:11

Chaitanya Ramji


1 Answers

The solution here works for me: https://stackoverflow.com/questions/39980096/xcode8-cocoapods-abort-trap6

sudo gem uninstall cocoapods

sudo gem install cocoapods --pre
like image 91
ddiego Avatar answered Oct 20 '22 19:10

ddiego