all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Bootstrap speed
@ 2022-01-02  5:44 Stefan Monnier
  2022-01-02  7:52 ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Stefan Monnier @ 2022-01-02  5:44 UTC (permalink / raw)
  To: emacs-devel

With the native compiler, I get the impression that the compilation from
`.el` to `.elc` files is faster but I also see that we spent an insane
amount of time in:

    ELC+ELN  emacs-lisp/macroexp.elc
    ELC+ELN  emacs-lisp/cconv.elc
    ELC+ELN  emacs-lisp/byte-opt.elc
    ELC+ELN  emacs-lisp/bytecomp.elc
    ELC+ELN  emacs-lisp/comp.elc
    ELC+ELN  emacs-lisp/comp-cstr.elc

right after the first dump.
I suspect this can be sped up significantly if we did something like:

    ELC  emacs-lisp/macroexp.elc
    ELC  emacs-lisp/cconv.elc
    ELC  emacs-lisp/byte-opt.elc
    ELC  emacs-lisp/bytecomp.elc
    ELC  emacs-lisp/comp.elc
    ELC  emacs-lisp/comp-cstr.elc
    ELN  emacs-lisp/macroexp.elc
    ELN  emacs-lisp/cconv.elc
    ELN  emacs-lisp/byte-opt.elc
    ELN  emacs-lisp/bytecomp.elc
    ELN  emacs-lisp/comp.elc
    ELN  emacs-lisp/comp-cstr.elc

Instead.


        Stefan




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-01-02 19:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-02  5:44 Bootstrap speed Stefan Monnier
2022-01-02  7:52 ` Eli Zaretskii
2022-01-02 12:18   ` Óscar Fuentes
2022-01-02 14:25     ` Eli Zaretskii
2022-01-02 19:30     ` Stefan Monnier

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.