diff options
author | Glenn Morris <rgm@gnu.org> | 2014-09-03 20:40:03 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-09-03 20:40:03 -0400 |
commit | 5788005d5fb5cf75b00aac5b2a1325d0ceec5beb (patch) | |
tree | 97b045601dd3500b501ff6796d6cfcd4779e1f7a /admin/notes | |
parent | 23aec6771492c8e5104be5c44d33e75492ad055a (diff) | |
download | emacs-5788005d5fb5cf75b00aac5b2a1325d0ceec5beb.tar.gz |
* admin/notes/bzr: Some bisect tips.
Diffstat (limited to 'admin/notes')
-rw-r--r-- | admin/notes/bzr | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/admin/notes/bzr b/admin/notes/bzr index 13a3beb4ca8..b962b370221 100644 --- a/admin/notes/bzr +++ b/admin/notes/bzr @@ -307,6 +307,18 @@ When finished, use or simply delete the entire branch if you created it just for this. +** Some tips for speeding up bisections: + +*** Use ./configure --without-all --cache-file=/tmp/config.cache +(assuming the thing you are testing for does not need a feature that +--without-all disables). + +*** Rather than `make', use `make -C lib && make -C src bootstrap-emacs +&& make -C src emacs', to avoid compiling the non-essential lisp files +(unless the thing you are testing for only shows up in compiled files; +if so compile just the relevant ones). Obviously use whatever make -j +option is appropriate for your system. + * Commit emails ** Old method: bzr-hookless-email |