Linker error with bus error: 10

I am trying to install composer using

curl -sS https://getcomposer.org/installer | php

      

Error with error message:

Bus error: 10

      

I have also tried

php -r "readfile('https://getcomposer.org/installer');" | php

      

which gives the same error.

I am on OSX 10.10.3 and PHP 5.6 installed with homebrew.

Any ideas?

+3


source to share


1 answer


It was disgusting. I was actually testing all sorts of things until I found that xdebug is causing all php scripts to stop in the PhpStorm debugger.



Ditching the debugger in PhpStorm apparently solved the problem.

+5


source







All Articles