diff options
author | Tristan Sloughter <[email protected]> | 2017-03-14 09:20:03 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2017-03-14 09:20:03 -0700 |
commit | d64be0acf966c25a68fce6b37788ff3fb8a5373b (patch) | |
tree | 8bce266b189d587c32313d7a8047d705b8571771 | |
parent | 87faa210dd6a5589ff86a9cc6992a413022feea7 (diff) | |
parent | 7aa3c7e15781e74c69942c02f22db3fd5a1a26af (diff) | |
download | relx-d64be0acf966c25a68fce6b37788ff3fb8a5373b.tar.gz relx-d64be0acf966c25a68fce6b37788ff3fb8a5373b.tar.bz2 relx-d64be0acf966c25a68fce6b37788ff3fb8a5373b.zip |
Merge pull request #575 from lrascao/feature/no_debug_info
Don't drop debug info on default build
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | bootstrap.cmd | 2 | ||||
-rw-r--r-- | rebar.config | 11 |
3 files changed, 11 insertions, 4 deletions
@@ -28,7 +28,7 @@ Building To build relx and generate a standalone escript executable: $ ./rebar3 update - $ ./rebar3 escriptize + $ ./rebar3 as escript escriptize This creates the executable `_build/default/bin/relx`. diff --git a/bootstrap.cmd b/bootstrap.cmd index 4deb2a3..1bbd00d 100644 --- a/bootstrap.cmd +++ b/bootstrap.cmd @@ -3,7 +3,7 @@ :: Get dependencies, compile and escriptize relx @cmd /c @rebar3 update -@cmd /c @rebar3 escriptize +@cmd /c @rebar3 as escript escriptize :: Create a shortcut file for running the relx command @set relx_cmd=relx.cmd diff --git a/rebar.config b/rebar.config index 664a5a8..395fdd7 100644 --- a/rebar.config +++ b/rebar.config @@ -17,7 +17,6 @@ [{platform_define, "^[0-9]+", namespaced_types}, {platform_define, "^1[8|9]", rand_module}, {platform_define, "^2", rand_module}, - no_debug_info, warnings_as_errors, inline]}. @@ -39,7 +38,15 @@ {add, getopt, [{erl_opts, [debug_info]}]}, {add, bbmustache, [{erl_opts, [debug_info]}]}, {add, cf, [{erl_opts, [debug_info]}]}]}, - {erl_opts, [debug_info]}]} + {erl_opts, [debug_info]}]}, + {escript, [ + {overrides, [{add, erlware_commons, [{erl_opts, [no_debug_info]}]}, + {add, providers, [{erl_opts, [no_debug_info]}]}, + {add, getopt, [{erl_opts, [no_debug_info]}]}, + {add, bbmustache, [{erl_opts, [no_debug_info]}]}, + {add, cf, [{erl_opts, [no_debug_info]}]}]}, + {erl_opts, [no_debug_info]} + ]} ]}. {overrides, [{override, erlware_commons, [ |