What is the standard build tool in Erlang?

2019-06-19 12:17发布

I am very new to Erlang programming language. Is there a standard build tool in Erlang?

I have googled out these, not sure which one I should use.

2条回答
家丑人穷心不美
2楼-- · 2019-06-19 12:35

Yes, we can use default make tool for build yours code (http://www.erlang.org/doc/man/make.html). But it is not so convenient.

Most projects use rebar. Because it is easy and convenient.

And yes, we can user Erlang.mk, it also provides the necessary functionality. It's big Makefile.

I recommend you start with rebar.

查看更多
Ridiculous、
3楼-- · 2019-06-19 12:38

Rebar is gradually being replaced by rebar3, which provides more deterministic builds and conflict resolution, packages (integrating with hex.pm), and so on.

As one of the current rebar and rebar3 maintainers, I'd recommend rebar3.

查看更多
登录 后发表回答