emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How do I build Emacs without byte compilation?


From: Stefan Monnier
Subject: Re: How do I build Emacs without byte compilation?
Date: Wed, 17 Apr 2019 09:46:38 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux)

> I would like to build Emacs several times with different compile-time
> options, but byte-compile the elisp files only once, as the process takes
> forever. Is there a way to do that?

I think the easiest/best way to do that is by building out of tree:

    cd /foo/bar
    mkdir build1 build2 build3
    (cd build1; .../emacs/configure --with-foo --with-bar; make)
    (cd build2; .../emacs/configure --without-foo --without-bar; make)
    (cd build3; .../emacs/configure --with-foo --wit-bar; make)


-- Stefan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]