diff options
author | Björn Gustavsson <[email protected]> | 2011-05-05 10:00:58 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-05-11 12:23:46 +0200 |
commit | 8ca1414cf245e53e638ef53f28661ac574fee6cc (patch) | |
tree | 794263fcf2b70e086a72d3eebabc87ff32a1bff3 | |
parent | 2ef48dca9328e0b928117f21bc9ee6dbc5a614cc (diff) | |
download | otp-8ca1414cf245e53e638ef53f28661ac574fee6cc.tar.gz otp-8ca1414cf245e53e638ef53f28661ac574fee6cc.tar.bz2 otp-8ca1414cf245e53e638ef53f28661ac574fee6cc.zip |
cerl: Remove ancient obsolete options
The -frag and -smp_frag options was used to start an (at the time)
experimental build of the emulator. The -shared and -hybrid option
was used to start experimental versions of the emulator with
alternate heap architectures.
-rw-r--r-- | erts/etc/unix/cerl.src | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/erts/etc/unix/cerl.src b/erts/etc/unix/cerl.src index 0355f2629f..e31a95f27e 100644 --- a/erts/etc/unix/cerl.src +++ b/erts/etc/unix/cerl.src @@ -135,26 +135,11 @@ while [ $# -gt 0 ]; do cargs="$cargs -lcnt" TYPE=.lcnt ;; - "-frag") - shift - cargs="$cargs -frag" - EMU_TYPE=.frag - ;; - "-smp_frag") - shift - cargs="$cargs -smp_frag" - EMU_TYPE=.smp_frag - ;; "-gprof") shift cargs="$cargs -gprof" TYPE=.gprof ;; - "-hybrid") - shift - cargs="$cargs -hybrid" - EMU_TYPE=.hybrid - ;; "-debug") shift cargs="$cargs -debug" @@ -180,11 +165,6 @@ while [ $# -gt 0 ]; do # shift # GDB=xxgdb # ;; - "-shared") - shift - cargs="$cargs -shared" - TYPE=.shared - ;; "-purify") shift cargs="$cargs -purify" |