From: Ihor Radchenko <yantar92@posteo.net>
To: Pedro Andres Aranda Gutierrez <paaguti@gmail.com>
Cc: Org Mode List <emacs-orgmode@gnu.org>
Subject: Re: Reproducible work with natively compiled Emacs
Date: Wed, 13 Mar 2024 12:50:41 +0000 [thread overview]
Message-ID: <87ttlawb1a.fsf@localhost> (raw)
In-Reply-To: <CAO48Bk883_Jq-WhsmAymXJw0tKzSBNpGwC3TFfjV9+-t6XDvkQ@mail.gmail.com>
Pedro Andres Aranda Gutierrez <paaguti@gmail.com> writes:
>> I have been experiencing some inconsistencies with org-mode, which I
>> have been able to trace own to using native compilation and not knowing
>> where the files from main were.
Thanks for the patch!
See my comments inline.
> +# This is where Emacs stores the .eln files
> +ELNDIR = $(shell emacs --batch --eval '(princ (car native-comp-eln-load-path))')
Please use $(EMACS).
> +cleaneln::
> + for elnf in $(patsubst %.eln, %-*.eln, $(LISPN)); do \
> + find $(ELNDIR) -name $$elnf -exec $(RM) -v {} \; ;\
> + done
$(FIND).
Also, avoid using bash as much as possible in favor or GNU make
constructs. You can use $(foreach ...) here.
> clean-install:
> if [ -d $(DESTDIR)$(lispdir) ] ; then \
> $(RM) $(DESTDIR)$(lispdir)/org*.el* $(DESTDIR)$(lispdir)/ob*.el* $(DESTDIR)$(lispdir)/ol*.el* $(DESTDIR)$(lispdir)/ox*.el* ; \
> --
> 2.34.1
> From 6d98dfb3d72171e0231823260165b23e8b9963ee Mon Sep 17 00:00:00 2001
> From: "Pedro A. Aranda" <paaguti@gmail.com>
> Date: Mon, 11 Mar 2024 09:47:12 +0100
> Subject: [PATCH 1/3] Add cleaneln target
>
> * mk/targets.mk: add the 'cleaneln' target
>
> ---
> mk/targets.mk | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/mk/targets.mk b/mk/targets.mk
> index de849c4fb..ab9ec2a1f 100644
> --- a/mk/targets.mk
> +++ b/mk/targets.mk
> @@ -143,6 +143,9 @@ cleanall: cleandirs cleantest
> $(CLEANDIRS:%=clean%):
> -$(FIND) $(@:clean%=%) \( -name \*~ -o -name \*.elc \) -exec $(RM) {} +
>
> +cleaneln:
> + $(MAKE) -C lisp $@
> +
Should be in .PHONY
> --- a/etc/ORG-NEWS
> +++ b/etc/ORG-NEWS
> @@ -11,7 +11,8 @@ See the end of the file for license conditions.
>
> Please send Org bug reports to mailto:emacs-orgmode@gnu.org.
>
> -* Version 9.7 (not released yet)
> +* V
> +ersion 9.7 (not released yet)
This is a stray newline.
> +*** ~make cleaneln~ will remove the .eln files from the user emacs configuration
> +
> +Natively compiled Emacs lisp files generated with ~make native~ are
> +now correctly located and deleted with ~make cleaneln~.
> +
> ** Miscellaneous
> *** =org-crypt.el= now applies initial visibility settings to decrypted entries
"Add 'native' option to 'make help'" from the previous version of the
patch still makes sense.
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
next prev parent reply other threads:[~2024-03-13 12:47 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-10 11:49 Reproducible work with natively compiled Emacs Pedro A. Aranda
2024-03-11 9:11 ` Pedro Andres Aranda Gutierrez
2024-03-13 12:50 ` Ihor Radchenko [this message]
2024-03-13 16:52 ` Pedro Andres Aranda Gutierrez
2024-03-13 17:17 ` Ihor Radchenko
[not found] ` <CAO48Bk8v7f3ajv1P3QMvZOuLCBn8f1qp5VQKeUByX0hbKqeEmQ@mail.gmail.com>
2024-03-14 7:50 ` Pedro Andres Aranda Gutierrez
2024-03-15 14:08 ` Ihor Radchenko
2024-03-15 11:17 ` Pedro Andres Aranda Gutierrez
[not found] ` <CAO48Bk9TgysKrAGmhiyR5NZ_4LYj9GMZf-LUo=fjREJYsuXFFg@mail.gmail.com>
2024-03-15 17:08 ` Ihor Radchenko
2024-03-16 6:16 ` Pedro Andres Aranda Gutierrez
2024-03-16 10:20 ` Ihor Radchenko
2024-03-17 6:13 ` Pedro Andres Aranda Gutierrez
2024-03-17 8:19 ` Max Nikulin
2024-03-17 10:16 ` Ihor Radchenko
2024-03-17 10:30 ` Pedro Andres Aranda Gutierrez
2024-03-17 14:26 ` Ihor Radchenko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87ttlawb1a.fsf@localhost \
--to=yantar92@posteo.net \
--cc=emacs-orgmode@gnu.org \
--cc=paaguti@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).