mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 09:14:18 +00:00
Add --trace-move.
This commit is contained in:
parent
43d69cc327
commit
ebbaf4e3af
2 changed files with 7 additions and 0 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
|
2001-12-06 Gerd Moellmann <gerd@gnu.org>
|
||||||
|
|
||||||
|
* make-emacs: Add --trace-move.
|
||||||
|
|
||||||
2001-10-23 Andrew Innes <andrewi@gnu.org>
|
2001-10-23 Andrew Innes <andrewi@gnu.org>
|
||||||
|
|
||||||
* nt/makedist.bat: Remove remaining obsolete reference to
|
* nt/makedist.bat: Remove remaining obsolete reference to
|
||||||
|
|
|
||||||
|
|
@ -53,6 +53,7 @@
|
||||||
"wall" => \$wall,
|
"wall" => \$wall,
|
||||||
"gcc3" => \$gcc3,
|
"gcc3" => \$gcc3,
|
||||||
"trace-selection" => \$trace_selection,
|
"trace-selection" => \$trace_selection,
|
||||||
|
"trace-move" => \$trace_move,
|
||||||
"stabs" => \$use_stabs,
|
"stabs" => \$use_stabs,
|
||||||
"optim" => \$optim);
|
"optim" => \$optim);
|
||||||
|
|
||||||
|
|
@ -77,6 +78,7 @@
|
||||||
--wall compile with -Wall
|
--wall compile with -Wall
|
||||||
--gcc3 use GCC 3.0 (30% slower compilation, slower code)
|
--gcc3 use GCC 3.0 (30% slower compilation, slower code)
|
||||||
--trace-selection print traces in xselect.c
|
--trace-selection print traces in xselect.c
|
||||||
|
--trace-move print traces for move_it* functions
|
||||||
--stabs use -gstabs instead -g
|
--stabs use -gstabs instead -g
|
||||||
|
|
||||||
Default is to compile with warnings, with -DGC_MCHECK=1, and
|
Default is to compile with warnings, with -DGC_MCHECK=1, and
|
||||||
|
|
@ -145,6 +147,7 @@
|
||||||
$defs = "$defs -DGC_MCHECK=1" unless $no_mcheck;
|
$defs = "$defs -DGC_MCHECK=1" unless $no_mcheck;
|
||||||
|
|
||||||
$defs = "$defs -DTRACE_SELECTION" if $trace_selection;
|
$defs = "$defs -DTRACE_SELECTION" if $trace_selection;
|
||||||
|
$defs = "$defs -DDEBUG_TRACE_MOVE" if $trace_move;
|
||||||
|
|
||||||
# arch=pentium leads to slightly faster code than without.
|
# arch=pentium leads to slightly faster code than without.
|
||||||
$opts = "$opts -march=pentiumpro";
|
$opts = "$opts -march=pentiumpro";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue