diff options
author | Paul Smith <psmith@gnu.org> | 2011-02-21 07:30:11 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2011-02-21 07:30:11 +0000 |
commit | 1454a04f81708850353dbdc0807a099c5aaab55b (patch) | |
tree | 4f414cb592087bed30a3563174c554f155a229f6 /ChangeLog | |
parent | ae2ab76faca93cad3059808b14d02f5565275e31 (diff) | |
download | gunmake-1454a04f81708850353dbdc0807a099c5aaab55b.tar.gz |
* Fixups to the make man page
* Minor syntax cleanups in the manual
* In non-maintainer mode set NDEBUG to disable assert()
* Performance improvements in strcache:
Build Info 1000 2000 4000
3.82 -g 2.61s 8.85s 33.52s
3.82 -O2 1.90s 7.62s 27.82s
New -g (with asserts) 1.03s 2.31s 5.79s
New -O2 (no asserts) 0.65s 1.50s 3.52s
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -1,3 +1,25 @@ +2011-02-21 Paul Smith <psmith@gnu.org> + + * strcache.c (various): Increase performance based on comments + from Ralf Wildenhues <Ralf.Wildenhues@gmx.de>. Stop looking for + a buffer when we find the first one that fits, not the best fit. + If there is not enough free space in a buffer move it to a + separate list so we don't have to walk it again. + * make.h (NDEBUG): Turn off asserts unless maintainer mode is set. + (strcache_add_len, strcache_setbufsize): Use unsigned length/size. + * maintMakefile (AM_CPPFLAGS): Enable MAKE_MAINTAINER_MODE. + + * remake.c (complain): Move translation lookups closer to use. + +2011-02-13 Paul Smith <psmith@gnu.org> + + * doc/make.texi: Clean up references to "static" variables and + semicolon errors. Patch from Michael Witten <mfwitten@gmail.com>. + +2010-12-27 Paul Smith <psmith@gnu.org> + + * make.1: Update the header/footer info in the man page. + 2010-11-28 Paul Smith <psmith@gnu.org> * read.c (record_target_var): Don't reset v if it's the same as |