Created
November 20, 2009 10:56
-
-
Save strobemonkey/239424 to your computer and use it in GitHub Desktop.
Build Erlang from source
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Find which version of Erlang you want: http://erlang.org/download.html | |
sudo apt-get build-dep erlang | |
sudo apt-get install java-gcj-compat java-gcj-compat-dev | |
wget http://erlang.org/download/otp_src_R13A.tar.gz | |
tar zxvf otp_src_R13A.tar.gz | |
cd otp_src_R13A | |
./configure | |
make && sudo make install | |
erl | |
#Eshell V5.6.5 (abort with ^G) | |
#1 q(). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment