您的位置:首页 > 其它

使用git下载编译erlang

2016-01-12 21:25 316 查看
git clone https://github.com/erlang/otp cd otp
git tag
git checkout -b OTP-18.2.2 OTP-18.2.2
./otp_build all
export LANG=en
./configure --prefix=/usr/local/otp-18.2.2
make
make install
make install-docs


上面的好像有错,贴一个从erlang官网下载的编译过程吧:

tar xzf otp_src_18.2.1.tar.gz
export LANG=en
cd otp_src_18.2.1
export ERL_TOP=`pwd`
./configure --prefix=/usr/local/otp_src-18.2.1 && make clean
make && make tests && make install && make install-docs
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: