Skip to content
psyeugenic edited this page Sep 13, 2010 · 22 revisions

Please visit www.erlang.org for documentation and other information regarding Erlang/OTP.

Do you have questions or want to discuss Erlang issues you can subscribe to Erlang/OTP’s mailing lists. You can find the information on how to subscribe on our FAQ

Cloning and Building Erlang/OTP

Here are the basic steps to build Erlang/OTP in the Git repository.
Start by cloning:

git clone git://github.com/erlang/otp.git

Next, set ERL_TOP the environment variable:

cd otp
export ERL_TOP=`pwd`

The repository does not contain a generated configure file, so it must be generated like this:

./otp_build autoconf

before configure can be run. When the configure files has been generated, you can build in the usual way as described in the README file. Shortly:

./configure
make

To run the system you have built without installing it first:

$ERL_TOP/bin/erl
Clone this wiki locally