MacPorts erlang “Bus error” due to Mac OS X 10.5.3 Update
The past few weeks, I’ve used my train ride home to dig deeper and deeper into erlang. Then after an OS X update released on May 28, 2008 my macports erlang installation stopped working! Running erl caused a “bus error” to occur. Trying to recompile erlang caused the same bus error to occur. Directions below work whether you have an existing erlang installation or you’re trying to compile erlang without prior installation.
Here’s how I was able to get it working again:
Open the erlang portfile with your favorite text editor, I prefer vi.
cd /opt/local/var/macports/sources/rsync.macports.org/release/ports/lang/erlang
sudo vi Portfile
Delete this line from configure.args attribute:
--enable-hipe \
The MacPorts configuration doesn’t depend on the enabling of HiPE and erlang will work fine without it. By default HiPE (Hi-Performance Erlang) isn’t enabled or supported on Mac OS X so I’m not sure why the Portfile enables it. HiPE is a project aimed at creating a faster Erlang by compiling to native code. You can find out more about HiPE here.
Reinstall erlang:
sudo port uninstall erlang
sudo port install erlang
You should see a message that says: Portfile changed since last build; discarding previous state.
Use erlang again!
If you want to know when the MacPorts issue is solved you can follow the Trac ticket here.
This was helpful — thank you!
jwhiteman
June 20, 2008 at 10:11 pm
you are my hero! i owe you a beer. and not just a cheap beer, but a really high-class beer, like rolling rock!
– scott
scott
July 2, 2008 at 5:54 pm
Thanks a million, I was just trying to install erlang so I could run through a getting started tutorial. Your tweak allowed me to do this
Ivan
July 6, 2008 at 2:49 pm
Thank you so much!!
gaiusparx
July 17, 2008 at 10:29 pm
Brilliant! Thanks, you’ve saved my hair!!
Treetoad
July 26, 2008 at 3:55 am
Thanks a lot.
ikspres
August 3, 2008 at 3:08 am
Muchos gracias! I wanted to try this out so bad. Now I can!
MattN
August 5, 2008 at 11:45 pm
Thanks! Just getting back to erlang after some time away and encountered this error.
Tony
September 25, 2008 at 10:01 am
I also had this problem after upgrading to Leopard. The solution worked. Thanks!
jtal
September 30, 2008 at 7:26 pm
Your expensive beer is in the mail.
Thanks!
Gus
November 11, 2008 at 10:35 am
nice, thx.
Jeremy Wei
December 20, 2011 at 2:10 am