LoginSignup
0
0

More than 5 years have passed since last update.

CentOS(6.2) に Erlangをソースからインストールする

Posted at

Erlangは2013年10月時点で標準のリポジトリにErlangが含まれていないので、
ソースを取ってきてコンパイルする。

事前準備
# cat /etc/issue
CentOS release 6.2 (Final)
Kernel \r on an \m
# yum install ncurses-devel
本家からソース取得してコンパイル
# wget http://www.erlang.org/download/otp_src_R16B02.tar.gz
# tar zxvf otp_src_R16B02.tar.gz
# cd otp_src_R16B02
# ./configure
# make
# make install
# erl

Eshell V5.10.3  (abort with ^G)
1>

./configure時に以下のエラーが出力されたけどいったん無視

**********************  APPLICATIONS DISABLED  **********************
*********************************************************************

odbc           : ODBC library - link check failed

*********************************************************************
*********************************************************************
**********************  APPLICATIONS INFORMATION  *******************
*********************************************************************

wx             : wxWidgets not found, wx will NOT be usable

*********************************************************************
*********************************************************************
**********************  DOCUMENTATION INFORMATION  ******************
*********************************************************************

documentation  :
                 xsltproc is missing.
                 fop is missing.
                 The documentation can not be built.

*********************************************************************

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0