rebar/inttest/erlc/rebar-no_debug_info.config
Slava Yurin 49c25642b3 Fix #249 (erlc regression)
The combination of changes to rebar_erlc_compiler, and the fact
that erl_first_files is inherited, caused a regression. To fix
that, ensure every project uses its own .rebar/erlcinfo. While at
it, fix the issue that erl_first_files entries were not included
when initializing the dep digraph.

Reported-by: Louis-Philippe Gauthier
Reported-by: Roland Karlsson

Thanks: Tuncer Ayaz
2014-05-30 18:55:09 +07:00

11 lines
315 B
Erlang

%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
{erl_first_files, ["src/first_xrl.erl", "src/first_yrl.erl"]}.
{erl_opts,
[
no_debug_info,
{i, "extra-include"},
{src_dirs, ["src", "extra-src"]},
{platform_define, "R13|R14", 'NO_CALLBACK_ATTRIBUTE'}
]}.