Do not capture the build-time value of $PATH in the 'emacs' executable since this can noticeably increase the size of the closure of Emacs with things like GCC being referenced. --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -481,7 +481,8 @@ lost after dumping"))) ((equal dump-mode "dump") "emacs") ((equal dump-mode "bootstrap") "emacs") ((equal dump-mode "pbootstrap") "bootstrap-emacs.pdmp") - (t (error "unrecognized dump mode %s" dump-mode))))) + (t (error "unrecognized dump mode %s" dump-mode)))) + (exec-path nil)) (message "Dumping under the name %s" output) (condition-case () (delete-file output) koszko' selected='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/valgrind.scm
AgeCommit message (Expand)Author
2021-06-23gnu: valgrind: Update to 3.17.0....* gnu/packages/valgrind.scm (valgrind): Update to 3.17.0. Chris Marusich
2020-06-27gnu: valgrind: Update to 3.16.1....* gnu/packages/valgrind.scm (valgrind): Update to 3.16.1. Marius Bakke
2020-06-27gnu: valgrind: Don't depend on GDB.......but add a special 'valgrind/interactive' variant for end users. * gnu/packages/valgrind.scm (valgrind)[inputs]: Remove. [properties]: New field. (valgrind/interactive): New public variable. Marius Bakke
2020-05-17gnu: valgrind: Fix build on powerpc....* gnu/packages/valgrind.scm (valgrind)[arguments]: Add make-flags for CPU optimizations when building on powerpc. Efraim Flashner
2020-04-28gnu: valgrind: Update source uri....* gnu/packages/valgrind.scm (valgrind)[source]: Remove valgrind host, add sourceware host. [home-page]: Use https. Efraim Flashner