Skip to content

Instantly share code, notes, and snippets.

@sifue
Created April 28, 2014 12:16
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 sifue/11370073 to your computer and use it in GitHub Desktop.
Save sifue/11370073 to your computer and use it in GitHub Desktop.
Erlangのインストール
sudo su -
cd /usr/local/src
wget "http://www.erlang.org/download/otp_src_17.0.tar.gz"
cd otp_src_17.0
./configure --enable-smp-support \
--enable-m64-build \
--enable-halfword-emulator \
--disable-native-libs \
--disable-sctp \
--enable-threads \
--enable-kernel-poll \
--disable-hipe \
--without-javac
make
make install
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment