forked from erlang/otp
-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Ajarn edited this page Sep 13, 2010
·
16 revisions
Here are the basic steps to build Erlang/OTP in the Git repository.
Start by cloning:
git clone git://github.com/erlang/otp.gitNext, 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 autoconfbefore 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
makeTo run the system you have built without installing it first:
$ERL_TOP/bin/erl