summaryrefslogtreecommitdiff
path: root/src/rebar_erlc_compiler.erl
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2011-03-29 13:44:02 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2011-03-30 11:19:37 +0200
commitbe209f24ff12dc2518f86ebf50fced143b21782b (patch)
tree9aa13fead68d3b8748930c6ba3aa03ed02f315b7 /src/rebar_erlc_compiler.erl
parent6d75bfbeb0c981e25c1b30b481118ea52a3b377e (diff)
Make debug_info default
Add no_debug_info option. Remove debug_info=1 option.
Diffstat (limited to 'src/rebar_erlc_compiler.erl')
-rw-r--r--src/rebar_erlc_compiler.erl13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/rebar_erlc_compiler.erl b/src/rebar_erlc_compiler.erl
index a9a8360..21db366 100644
--- a/src/rebar_erlc_compiler.erl
+++ b/src/rebar_erlc_compiler.erl
@@ -118,13 +118,12 @@ doterl_compile(Config, OutDir) ->
doterl_compile(Config, OutDir, MoreSources) ->
FirstErls = rebar_config:get_list(Config, erl_first_files, []),
RawErlOpts = filter_defines(rebar_config:get(Config, erl_opts, []), []),
- ErlOpts =
- case rebar_config:get_global(debug_info, "0") of
- "0" ->
- RawErlOpts;
- _ ->
- [debug_info|RawErlOpts]
- end,
+ ErlOpts = case proplists:is_defined(no_debug_info, RawErlOpts) of
+ true ->
+ [O || O <- RawErlOpts, O =/= no_debug_info];
+ _ ->
+ [debug_info|RawErlOpts]
+ end,
?DEBUG("erl_opts ~p~n",[ErlOpts]),
%% Support the src_dirs option allowing multiple directories to
%% contain erlang source. This might be used, for example, should