# HG changeset patch # User Gerd Moellmann # Date 1007648567 0 # Node ID 1b65cbdd3bbda475c14fbf86d33bb136dbafd245 # Parent 16833c8c834ee67cd99047c8ee4ccaf20ca185e4 Add --trace-move. diff -r 16833c8c834e -r 1b65cbdd3bbd admin/make-emacs --- a/admin/make-emacs Thu Dec 06 14:17:02 2001 +0000 +++ b/admin/make-emacs Thu Dec 06 14:22:47 2001 +0000 @@ -53,6 +53,7 @@ "wall" => \$wall, "gcc3" => \$gcc3, "trace-selection" => \$trace_selection, + "trace-move" => \$trace_move, "stabs" => \$use_stabs, "optim" => \$optim); @@ -77,6 +78,7 @@ --wall compile with -Wall --gcc3 use GCC 3.0 (30% slower compilation, slower code) --trace-selection print traces in xselect.c + --trace-move print traces for move_it* functions --stabs use -gstabs instead -g 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 -DTRACE_SELECTION" if $trace_selection; +$defs = "$defs -DDEBUG_TRACE_MOVE" if $trace_move; # arch=pentium leads to slightly faster code than without. $opts = "$opts -march=pentiumpro";