Tim Dysinger RSS

Dec
20th
Thu
permalink

Compiling Erlang on Mac OS X Leopard from Scratch

You need XCode and libgd installed and then the following script should work pasted into a terminal window:
cd /tmp
curl http://www.erlang.org/download/otp_src_R12B-5.tar.gz  tar xz
cd otp_src_R12B-5
./configure --enable-hipe --enable-smp-support --enable-threads
make
sudo make install
cd ..