Last active
September 10, 2015 19:29
-
-
Save yagop/9bfd97193403bdcede0b to your computer and use it in GitHub Desktop.
Compile and install Erlang OTP-17.5.6.3 and Elixir v1.0.5 from sources
This file contains 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
#!/bin/bash | |
cd /tmp | |
git clone git://github.com/erlang/otp.git | |
cd otp | |
git checkout OTP-17.5.6.3 | |
export ERL_TOP=`pwd` | |
./otp_build autoconf | |
./configure | |
make | |
sudo make install | |
cd .. | |
git clone https://github.com/elixir-lang/elixir.git | |
cd elixir | |
git checkout v1.0.5 | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment