GNU bug report logs -
#70355
emacs-29 build fails byte-compiling lisp/org/ox.el
Previous Next
To reply to this bug, email your comments to 70355 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#70355
; Package
emacs
.
(Fri, 12 Apr 2024 15:48:15 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
morf <amorfortia <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Fri, 12 Apr 2024 15:48:16 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Good day,
While wondering if this is the place to bring my issue, allow me to state it nevertheless.
I was trying to compile emacs-29 from sources. However the build fails, and chokes on byte-compiling lisp/org/ox.el:
...
make[3]: Entering directory '/home/bjd/mint/packages/emacs-mirror/lisp'
'../src/emacs' -batch --no-site-file --no-site-lisp --eval "(setq load-prefer-newer t byte-compile-warnings 'all)" -f batch-byte-compile org/ox.el
In toplevel form:
org/ox.el:82:2: Error: Eager macro-expansion failure: (error "Eager macro-expansion failure: (error \"Eager macro-expansion failure: (error \\\"Eager macro-expansion skipped due to cycle:
… => (load \\\\\\\"tramp-archive.el\\\\\\\") => (macroexpand-all …) => (macroexpand (eval-and-compile …)) => (load \\\\\\\"tramp-gvfs.el\\\\\\\") => (load \\\\\\\"tramp.el\\\\\\\") => (load \\\\\\\"tramp-archive.el\\\\\\\")\\\")\")")
Makefile:332: recipe for target 'org/ox.elc' failed
make[3]: *** [org/ox.elc] Error 1
make[3]: Leaving directory '/home/bjd/mint/packages/emacs-mirror/lisp'
Makefile:383: recipe for target 'main-first' failed
make[2]: *** [main-first] Error 2
make[2]: Leaving directory '/home/bjd/mint/packages/emacs-mirror/lisp'
Makefile:533: recipe for target 'lisp' failed
make[1]: *** [lisp] Error 2
make[1]: Leaving directory '/home/bjd/mint/packages/emacs-mirror'
make[1]: Entering directory '/home/bjd/mint/packages/emacs-mirror'
***
*** "make all" failed with exit status 2.
...
I think this can be traced back to byte-compiling lisp/org/org-element.el; when I try to byte-compile that manually I do indeed get the error about Eager macro-expansion failure, but I am unsure what actually causes this failure.
Comments?
Thank you.
[Message part 2 (text/html, inline)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#70355
; Package
emacs
.
(Fri, 12 Apr 2024 18:21:05 GMT)
Full text and
rfc822 format available.
Message #8 received at 70355 <at> debbugs.gnu.org (full text, mbox):
> Date: Fri, 12 Apr 2024 16:14:38 +0200
> From: morf <amorfortia <at> gmail.com>
>
> While wondering if this is the place to bring my issue, allow me to state it nevertheless.
>
> I was trying to compile emacs-29 from sources. However the build fails, and chokes on byte-compiling
> lisp/org/ox.el:
>
> ...
> make[3]: Entering directory '/home/bjd/mint/packages/emacs-mirror/lisp'
> '../src/emacs' -batch --no-site-file --no-site-lisp --eval "(setq load-prefer-newer t byte-compile-warnings 'all)" -f
> batch-byte-compile org/ox.el
>
> In toplevel form:
> org/ox.el:82:2: Error: Eager macro-expansion failure: (error "Eager macro-expansion failure: (error \"Eager
> macro-expansion failure: (error \\\"Eager macro-expansion skipped due to cycle:
> … => (load \\\\\\\"tramp-archive.el\\\\\\\") => (macroexpand-all …) => (macroexpand (eval-and-compile …)) =>
> (load \\\\\\\"tramp-gvfs.el\\\\\\\") => (load \\\\\\\"tramp.el\\\\\\\") => (load \\\\\\\"tramp-archive.el\\\\\\\")\\\")\")")
> Makefile:332: recipe for target 'org/ox.elc' failed
> make[3]: *** [org/ox.elc] Error 1
> make[3]: Leaving directory '/home/bjd/mint/packages/emacs-mirror/lisp'
> Makefile:383: recipe for target 'main-first' failed
> make[2]: *** [main-first] Error 2
> make[2]: Leaving directory '/home/bjd/mint/packages/emacs-mirror/lisp'
> Makefile:533: recipe for target 'lisp' failed
> make[1]: *** [lisp] Error 2
> make[1]: Leaving directory '/home/bjd/mint/packages/emacs-mirror'
> make[1]: Entering directory '/home/bjd/mint/packages/emacs-mirror'
> ***
> *** "make all" failed with exit status 2.
> ...
>
> I think this can be traced back to byte-compiling lisp/org/org-element.el; when I try to byte-compile that
> manually I do indeed get the error about Eager macro-expansion failure, but I am unsure what actually causes
> this failure.
>
> Comments?
I cannot reproduce that. Suggest "make bootstrap".
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#70355
; Package
emacs
.
(Sat, 13 Apr 2024 07:06:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 70355 <at> debbugs.gnu.org (full text, mbox):
[Please use Reply All to reply, to keep the bug tracker CC'ed.]
Forwarding to the bug tracker:
> Date: Sat, 13 Apr 2024 02:19:17 +0200
> From: morf <amorfortia <at> gmail.com>
>
> Thank you for responding.
>
> Yes, make bootstrap, did that already a couple of times, but I keep running into the same error. What is odd is
> that the byte-compile (see fragment in my post) of ox.el gives the line number, when manually trying to
> byte-compile org-element.el (the offender) I get no line number at all. Hmm.
>
> Will keep trying to figure out what is wrong here. I wonder where the tramp stuff enters.
>
> Eli Zaretskii wrote on 4/12/24 20:20:
>
> Date: Fri, 12 Apr 2024 16:14:38 +0200
> From: morf <amorfortia <at> gmail.com>
>
> While wondering if this is the place to bring my issue, allow me to state it nevertheless.
>
> I was trying to compile emacs-29 from sources. However the build fails, and chokes on byte-compiling
> lisp/org/ox.el:
>
> ...
> make[3]: Entering directory '/home/bjd/mint/packages/emacs-mirror/lisp'
> '../src/emacs' -batch --no-site-file --no-site-lisp --eval "(setq load-prefer-newer t byte-compile-warnings 'all)" -f
> batch-byte-compile org/ox.el
>
> In toplevel form:
> org/ox.el:82:2: Error: Eager macro-expansion failure: (error "Eager macro-expansion failure: (error \"Eager
> macro-expansion failure: (error \\\"Eager macro-expansion skipped due to cycle:
> … => (load \\\\\\\"tramp-archive.el\\\\\\\") => (macroexpand-all …) => (macroexpand (eval-and-compile …)) =>
> (load \\\\\\\"tramp-gvfs.el\\\\\\\") => (load \\\\\\\"tramp.el\\\\\\\") => (load \\\\\\\"tramp-archive.el\\\\\\\")\\\")\")")
> Makefile:332: recipe for target 'org/ox.elc' failed
> make[3]: *** [org/ox.elc] Error 1
> make[3]: Leaving directory '/home/bjd/mint/packages/emacs-mirror/lisp'
> Makefile:383: recipe for target 'main-first' failed
> make[2]: *** [main-first] Error 2
> make[2]: Leaving directory '/home/bjd/mint/packages/emacs-mirror/lisp'
> Makefile:533: recipe for target 'lisp' failed
> make[1]: *** [lisp] Error 2
> make[1]: Leaving directory '/home/bjd/mint/packages/emacs-mirror'
> make[1]: Entering directory '/home/bjd/mint/packages/emacs-mirror'
> ***
> *** "make all" failed with exit status 2.
> ...
>
> I think this can be traced back to byte-compiling lisp/org/org-element.el; when I try to byte-compile that
> manually I do indeed get the error about Eager macro-expansion failure, but I am unsure what actually causes
> this failure.
>
> Comments?
>
>
> I cannot reproduce that. Suggest "make bootstrap".
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#70355
; Package
emacs
.
(Sat, 13 Apr 2024 16:40:05 GMT)
Full text and
rfc822 format available.
Message #14 received at 70355 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Ah yes, my bad, thanks for setting me straight. I've been out of this too long.
Eli Zaretskii wrote on 4/13/24 09:05:
> [Please use Reply All to reply, to keep the bug tracker CC'ed.]
>
> Forwarding to the bug tracker:
>
>> Date: Sat, 13 Apr 2024 02:19:17 +0200
>> From: morf<amorfortia <at> gmail.com>
>>
>> Thank you for responding.
>>
>> Yes, make bootstrap, did that already a couple of times, but I keep running into the same error. What is odd is
>> that the byte-compile (see fragment in my post) of ox.el gives the line number, when manually trying to
>> byte-compile org-element.el (the offender) I get no line number at all. Hmm.
>>
>> Will keep trying to figure out what is wrong here. I wonder where the tramp stuff enters.
>>
>> Eli Zaretskii wrote on 4/12/24 20:20:
>>
>> Date: Fri, 12 Apr 2024 16:14:38 +0200
>> From: morf<amorfortia <at> gmail.com>
>>
>> While wondering if this is the place to bring my issue, allow me to state it nevertheless.
>>
>> I was trying to compile emacs-29 from sources. However the build fails, and chokes on byte-compiling
>> lisp/org/ox.el:
>>
>> ...
>> make[3]: Entering directory '/home/bjd/mint/packages/emacs-mirror/lisp'
>> '../src/emacs' -batch --no-site-file --no-site-lisp --eval "(setq load-prefer-newer t byte-compile-warnings 'all)" -f
>> batch-byte-compile org/ox.el
>>
>> In toplevel form:
>> org/ox.el:82:2: Error: Eager macro-expansion failure: (error "Eager macro-expansion failure: (error \"Eager
>> macro-expansion failure: (error \\\"Eager macro-expansion skipped due to cycle:
>> … => (load \\\\\\\"tramp-archive.el\\\\\\\") => (macroexpand-all …) => (macroexpand (eval-and-compile …)) =>
>> (load \\\\\\\"tramp-gvfs.el\\\\\\\") => (load \\\\\\\"tramp.el\\\\\\\") => (load \\\\\\\"tramp-archive.el\\\\\\\")\\\")\")")
>> Makefile:332: recipe for target 'org/ox.elc' failed
>> make[3]: *** [org/ox.elc] Error 1
>> make[3]: Leaving directory '/home/bjd/mint/packages/emacs-mirror/lisp'
>> Makefile:383: recipe for target 'main-first' failed
>> make[2]: *** [main-first] Error 2
>> make[2]: Leaving directory '/home/bjd/mint/packages/emacs-mirror/lisp'
>> Makefile:533: recipe for target 'lisp' failed
>> make[1]: *** [lisp] Error 2
>> make[1]: Leaving directory '/home/bjd/mint/packages/emacs-mirror'
>> make[1]: Entering directory '/home/bjd/mint/packages/emacs-mirror'
>> ***
>> *** "make all" failed with exit status 2.
>> ...
>>
>> I think this can be traced back to byte-compiling lisp/org/org-element.el; when I try to byte-compile that
>> manually I do indeed get the error about Eager macro-expansion failure, but I am unsure what actually causes
>> this failure.
>>
>> Comments?
>>
>>
>> I cannot reproduce that. Suggest "make bootstrap".
[Message part 2 (text/html, inline)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#70355
; Package
emacs
.
(Sat, 01 Mar 2025 02:49:04 GMT)
Full text and
rfc822 format available.
Message #17 received at 70355 <at> debbugs.gnu.org (full text, mbox):
Eli Zaretskii <eliz <at> gnu.org> writes:
> [Please use Reply All to reply, to keep the bug tracker CC'ed.]
>
> Forwarding to the bug tracker:
>
>> Date: Sat, 13 Apr 2024 02:19:17 +0200
>> From: morf <amorfortia <at> gmail.com>
>>
>> Thank you for responding.
>>
>> Yes, make bootstrap, did that already a couple of times, but I keep running into the same error. What is odd is
>> that the byte-compile (see fragment in my post) of ox.el gives the line number, when manually trying to
>> byte-compile org-element.el (the offender) I get no line number at all. Hmm.
>>
>> Will keep trying to figure out what is wrong here. I wonder where the tramp stuff enters.
Did you find out more here? I'm tagging this as unreproducible for now.
Added tag(s) moreinfo and unreproducible.
Request was from
Stefan Kangas <stefankangas <at> gmail.com>
to
control <at> debbugs.gnu.org
.
(Sat, 01 Mar 2025 02:50:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 109 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.