Skip to content

Instantly share code, notes, and snippets.

@yagop
Last active September 10, 2015 19:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yagop/9bfd97193403bdcede0b to your computer and use it in GitHub Desktop.
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
#!/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