I am an absolute Erlang newbie and I wonder if it is possible for rebar
to compile .core
files using rebar3 compile
. According to the documentation : https://www.rebar3.org/docs/commands rebar3 will only compile the .app.src
and .erl
files. And I can see that when I build my project the .core
files are ignored. I would appreciate any help with this. Thanks
Asked
Active
Viewed 104 times
1

Abhiroop Sarkar
- 2,251
- 1
- 26
- 45
-
I have no idea what `.core` files are, but Iād guess you are to introduce the [custom compiler plugin](https://www.rebar3.org/docs/custom-compiler-plugins) for `rebar3`. ā Aleksei Matiushkin Mar 23 '20 at 04:45
-
1@AlekseiMatiushkin Erlang has a core language called `Core Erlang` - https://www.it.uu.se/research/group/hipe/cerl/doc/core_erlang-1.0.3.pdf If you take simple erlang program and compile it using `erlc +to_core myprog.erl` it will emit a `myprog.core` file ā Abhiroop Sarkar Mar 27 '20 at 13:45