summaryrefslogtreecommitdiff
path: root/admin/make-emacs
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-12-06 14:22:57 +0000
committerGerd Moellmann <gerd@gnu.org>2001-12-06 14:22:57 +0000
commitebbaf4e3aff76ae4820f6622ff0d9865c670afb0 (patch)
tree184ca0868403f908ff0c74e581dbcf05afa0cd93 /admin/make-emacs
parent43d69cc327a80cb73d5a1a8a18bec7478ec7a52f (diff)
downloademacs-ebbaf4e3aff76ae4820f6622ff0d9865c670afb0.tar.gz
Add --trace-move.
Diffstat (limited to 'admin/make-emacs')
-rwxr-xr-xadmin/make-emacs3
1 files changed, 3 insertions, 0 deletions
diff --git a/admin/make-emacs b/admin/make-emacs
index fb427540b2d..ac9d9d763d2 100755
--- a/admin/make-emacs
+++ b/admin/make-emacs
@@ -53,6 +53,7 @@ $rc = GetOptions ("help" => \$help,
"wall" => \$wall,
"gcc3" => \$gcc3,
"trace-selection" => \$trace_selection,
+ "trace-move" => \$trace_move,
"stabs" => \$use_stabs,
"optim" => \$optim);
@@ -77,6 +78,7 @@ Build Emacs.
--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_MALLOC_CHECK=1 -DGC_PROTECT_MALLOC_STATE=1" if $malloc_check
$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";