diff options
author | Lukas Larsson <[email protected]> | 2016-06-02 11:23:57 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2016-06-14 10:25:37 +0200 |
commit | 1576cbabb934bad54f9c25ebc7f763ff6208434f (patch) | |
tree | 125f67150d2e679a1e08febd4b54fd8dd9d0e5e7 /erts | |
parent | 1418cbbb689dc2c88ecceaedb4eba33061d338e7 (diff) | |
download | otp-1576cbabb934bad54f9c25ebc7f763ff6208434f.tar.gz otp-1576cbabb934bad54f9c25ebc7f763ff6208434f.tar.bz2 otp-1576cbabb934bad54f9c25ebc7f763ff6208434f.zip |
erts: Add etp commands to re-compile erlang
Diffstat (limited to 'erts')
-rw-r--r-- | erts/etc/unix/etp-commands.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/erts/etc/unix/etp-commands.in b/erts/etc/unix/etp-commands.in index 8f9945c4b4..ce334c9dcb 100644 --- a/erts/etc/unix/etp-commands.in +++ b/erts/etc/unix/etp-commands.in @@ -3694,6 +3694,26 @@ document etp-address-to-beam-opcode %--------------------------------------------------------------------------- end +define etp-compile-debug + shell (cd $ERL_TOP && make emulator FLAVOR=smp TYPE=debug) +end + +document etp-compile-debug +%--------------------------------------------------------------------------- +% Re-compile the debug erlang emulator +%--------------------------------------------------------------------------- +end + +define etp-compile + shell (cd $ERL_TOP && make emulator) +end + +document etp-compile +%--------------------------------------------------------------------------- +% Re-compile the erlang emulator +%--------------------------------------------------------------------------- +end + ############################################################################ # Toolbox parameter handling |