aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorGerd Moellmann2001-12-06 14:22:57 +0000
committerGerd Moellmann2001-12-06 14:22:57 +0000
commitebbaf4e3aff76ae4820f6622ff0d9865c670afb0 (patch)
tree184ca0868403f908ff0c74e581dbcf05afa0cd93 /admin
parent43d69cc327a80cb73d5a1a8a18bec7478ec7a52f (diff)
downloademacs-ebbaf4e3aff76ae4820f6622ff0d9865c670afb0.tar.gz
emacs-ebbaf4e3aff76ae4820f6622ff0d9865c670afb0.zip
Add --trace-move.
Diffstat (limited to 'admin')
-rw-r--r--admin/ChangeLog4
-rwxr-xr-xadmin/make-emacs3
2 files changed, 7 insertions, 0 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index bb34215d0ee..097f0669d3d 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,7 @@
12001-12-06 Gerd Moellmann <gerd@gnu.org>
2
3 * make-emacs: Add --trace-move.
4
12001-10-23 Andrew Innes <andrewi@gnu.org> 52001-10-23 Andrew Innes <andrewi@gnu.org>
2 6
3 * nt/makedist.bat: Remove remaining obsolete reference to 7 * nt/makedist.bat: Remove remaining obsolete reference to
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,
53 "wall" => \$wall, 53 "wall" => \$wall,
54 "gcc3" => \$gcc3, 54 "gcc3" => \$gcc3,
55 "trace-selection" => \$trace_selection, 55 "trace-selection" => \$trace_selection,
56 "trace-move" => \$trace_move,
56 "stabs" => \$use_stabs, 57 "stabs" => \$use_stabs,
57 "optim" => \$optim); 58 "optim" => \$optim);
58 59
@@ -77,6 +78,7 @@ Build Emacs.
77 --wall compile with -Wall 78 --wall compile with -Wall
78 --gcc3 use GCC 3.0 (30% slower compilation, slower code) 79 --gcc3 use GCC 3.0 (30% slower compilation, slower code)
79 --trace-selection print traces in xselect.c 80 --trace-selection print traces in xselect.c
81 --trace-move print traces for move_it* functions
80 --stabs use -gstabs instead -g 82 --stabs use -gstabs instead -g
81 83
82Default is to compile with warnings, with -DGC_MCHECK=1, and 84Default 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
145$defs = "$defs -DGC_MCHECK=1" unless $no_mcheck; 147$defs = "$defs -DGC_MCHECK=1" unless $no_mcheck;
146 148
147$defs = "$defs -DTRACE_SELECTION" if $trace_selection; 149$defs = "$defs -DTRACE_SELECTION" if $trace_selection;
150$defs = "$defs -DDEBUG_TRACE_MOVE" if $trace_move;
148 151
149# arch=pentium leads to slightly faster code than without. 152# arch=pentium leads to slightly faster code than without.
150$opts = "$opts -march=pentiumpro"; 153$opts = "$opts -march=pentiumpro";