all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Dirk-Jan C. Binnema" <djcb.bulk@gmail.com>
To: emacs-devel@gnu.org
Subject: Re: [PROPOSAL] Builder, a build system integration for Emacs
Date: Wed, 24 May 2023 09:09:28 +0300	[thread overview]
Message-ID: <87wn0ytefw.fsf@gmail.com> (raw)
In-Reply-To: <e5369a89-cfc3-2b61-0704-51716ed615b9@mailo.com>


On Tuesday May 23 2023, Augustin Chéneau (BTuin) wrote:

> Le 23/05/2023 à 02:44, Po Lu a écrit :
>> "Augustin Chéneau (BTuin)" <btuin@mailo.com> writes:
>> 
>>> Oh I didn't mean a simple toggle, I meant an arbitrary command
>>> variant. For instance with Builder you can define a "debug2",
>>> "compile_arm" or any other command.
>> I don't understand how this works; before you can change targets, you
>> need to regenerate the build system for your program by running
>> configure.
>> Are you saying that in Builder, `configure' is an extra step, run each
>> time the target changes?
>> 
>
> Yes, it is.
>
> Let's illustrate with an hypothetical workflow: you work on Emacs, and you want
> to easily switch between multiple configurations, say "minimal" which enable
> very few features to ease debugging and "regular" which enable many features,
> such as pgtk, json, native compilation... (and possibly many other variants,
> there is no limit of number).
>
> First, you execute `builder-configure' which detects the build system, finds
> Autotools and asks you to chose between "minimal", "regular", and others.  Once
> you've chosen, the minibuffer is filled with the "minimal" command (for example
> `../configure --without-threads --without-toolkit-scroll-bars`.  You press
> enter, the command is executed in a compile buffer.
>
> Then, you need to compile.  You call `builder-compile', and you may have to
> chose between multiple targets, for example "default" with the value "make" and
> "parallel" with the value "make -jN", N being the number of cores on you
> processor.  Once you've chosen, the same as for configure happens, the command
> is executed in a compilation buffer.
>
> If you want to change to the "regular" configuration target, you call
> `builder-configure` and select this target.  Then, you call `builder-compile` to
> compile the project.
>
> So each time you want to change the target you call `builder-configure`.   But
> with out of tree builds, it could be possible to create one build directory for
> each configuration, which would remove the need to execute the configuration
> step each time you want to change.  It's not yet available as it is really not
> trivial to implement, but I'll try to find a satisfying solution.

Sounds useful!

I did some experiments in this area; I'm using some (private for now)
code to do something like that; it does some detection (e.g a ´cargo' or
a 'meson' project, 'autotools' project), and generates an alist per
project-type, which maps 'verbs' like 'build', 'run', 'test' to
project-type-specific commands, e.g. this specifies detection of a
rust project and the accompanying verbs.

--8<---------------cut here---------------start------------->8---
(defvar breeze-cargo-project
  ((and (fboundp 'rust-mode) (locate-dominating-file "." "Cargo.toml")) .
   ((build . rust-compile)
    (run   . rust-run)
    (test  . rust-test)))
  "A project we can build with cargo/rust-mode?")
--8<---------------cut here---------------end--------------->8---

and I can now map a common key binding for building or testing etc. the
current project. In many cases _ultimately_ it's just a fancy way to
fill `compile-command', but depending on the project it can be anything.

Some of my projects don't quite fit the generic type, so I allow for
overriding on a per-project basis; e.g. when there are a few different
things to build, I use a transient as the build command:

--8<---------------cut here---------------start------------->8---
  (transient-define-prefix build-my-special-targets()
    "Transient for special build commands."
    [:class transient-columns
	    ["Build"
	     ("a" "Build A" (lambda ()
               (interactive) (build-special "a")))
             ("b" "Build B" (lambda ()
               (interactive) (build-special "b")))  
             ("c" "Build C" (lambda ()
               (interactive) (build-special "c")))   ]])
--8<---------------cut here---------------end--------------->8---

so I get some nice menu.

It'd  be great to have such a facility in emacs.

Kind regards,
Dirk.

-- 
Dirk-Jan C. Binnema                  Helsinki, Finland
e:djcb@djcbsoftware.nl           w:www.djcbsoftware.nl
gpg: 6987 9CED 1745 9375 0F14 DA98 11DD FEA9 DCC4 A036



  parent reply	other threads:[~2023-05-24  6:09 UTC|newest]

Thread overview: 101+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-21 10:21 [PROPOSAL] Builder, a build system integration for Emacs BTuin
2023-05-21 12:11 ` Philip Kaludercic
2023-05-21 14:56   ` Augustin Chéneau (BTuin)
2023-05-21 17:24 ` Jim Porter
2023-05-21 19:33   ` Augustin Chéneau (BTuin)
2023-05-21 19:58     ` Jim Porter
2023-05-21 21:36       ` John Yates
2023-05-22 16:35       ` Augustin Chéneau (BTuin)
2023-05-23  0:44         ` Po Lu
2023-05-23 21:10           ` Augustin Chéneau (BTuin)
2023-05-23 21:17             ` Óscar Fuentes
2023-05-24  6:09             ` Dirk-Jan C. Binnema [this message]
2023-05-24 21:35               ` Richard Stallman
2023-05-24 23:32                 ` Jim Porter
2023-05-25  0:11                 ` Gregory Heytings
2023-05-25  4:00                   ` tomas
2023-05-25  6:53                     ` Gregory Heytings
2023-05-25  7:48                       ` Eli Zaretskii
2023-05-25  9:33                         ` Gregory Heytings
2023-05-25 11:28                           ` Eli Zaretskii
2023-05-25 11:53                             ` Gregory Heytings
2023-05-25 13:09                               ` Eli Zaretskii
2023-05-25 14:36                                 ` Gregory Heytings
2023-05-25 16:20                                   ` Eli Zaretskii
2023-05-25 16:40                                     ` tomas
2023-05-25 19:23                                     ` Gregory Heytings
2023-05-26  0:57                                       ` Po Lu
2023-05-27  0:24                                         ` Gregory Heytings
2023-05-26  5:57                                       ` Eli Zaretskii
2023-05-26 21:16                                       ` Richard Stallman
2023-05-27  0:25                                         ` Gregory Heytings
2023-05-28 10:20                                           ` Madhu
2023-05-28 12:38                                             ` Po Lu
2023-05-29 22:03                                               ` Gregory Heytings
2023-05-29 22:42                                                 ` Po Lu
2023-05-30  7:26                                                   ` Gregory Heytings
2023-05-30 12:54                                                     ` Po Lu
2023-05-30 15:08                                                       ` Gregory Heytings
2023-05-30 16:50                                                         ` chad
2023-05-31  1:14                                                         ` Po Lu
2023-06-05  1:09                                                           ` Gregory Heytings
2023-06-05  5:29                                                             ` Po Lu
2023-06-05  8:17                                                               ` Gregory Heytings
2023-06-05  9:06                                                                 ` Po Lu
2023-06-17  3:34                                                                   ` Yilkal Argaw
2023-05-27 14:55                                         ` Brian Cully via Emacs development discussions.
2023-05-26  0:54                                   ` Po Lu
2023-05-26 21:16                                   ` Richard Stallman
2023-05-27  0:26                                     ` Gregory Heytings
2023-05-27  2:37                                       ` Ruijie Yu via Emacs development discussions.
2023-05-28 21:48                                       ` Richard Stallman
2023-05-29 22:05                                         ` Gregory Heytings
2023-05-30 13:01                                           ` Po Lu
2023-05-30 15:08                                             ` Gregory Heytings
2023-05-31  1:16                                               ` Po Lu
2023-06-02 21:38                                                 ` Richard Stallman
2023-06-05  1:10                                                 ` Gregory Heytings
2023-06-05  5:19                                                   ` Po Lu
2023-06-05  8:17                                                     ` Gregory Heytings
2023-06-05  9:00                                                       ` Po Lu
2023-05-31 22:28                                               ` Richard Stallman
2023-05-30 21:52                                           ` Richard Stallman
2023-05-28 21:48                                       ` Richard Stallman
2023-05-25 13:16                         ` chad
2023-05-25 19:38                           ` Augustin Chéneau (BTuin)
2023-05-26 21:32                           ` Richard Stallman
2023-05-27  9:45                             ` Yuri Khan
2023-05-28 21:48                               ` Richard Stallman
2023-05-29  8:03                                 ` Yuri Khan
2023-05-30 21:47                                   ` Richard Stallman
2023-05-25  7:55                       ` tomas
2023-05-25  8:44                         ` Gregory Heytings
2023-05-25 10:38                       ` Po Lu
2023-05-25 11:44                         ` Gregory Heytings
2023-05-25 12:02                           ` Po Lu
2023-05-25 12:08                             ` Gregory Heytings
2023-05-26  0:52                               ` Po Lu
2023-05-26 21:16                           ` Richard Stallman
2023-05-27  0:26                             ` Gregory Heytings
2023-05-28 21:47                               ` Richard Stallman
2023-05-29 22:05                                 ` Gregory Heytings
2023-05-30 13:03                                   ` Po Lu
2023-05-31 22:29                                     ` Richard Stallman
2023-05-26 22:59                       ` Lynn Winebarger
2023-05-28 21:22                         ` Björn Bidar
2023-05-29 22:38                           ` Richard Stallman
2023-05-29 22:38                           ` Richard Stallman
2023-05-30  4:28                             ` tomas
2023-05-25 10:42             ` Po Lu
2023-05-25 19:36               ` Augustin Chéneau (BTuin)
2023-05-22 22:00 ` Richard Stallman
2023-05-23  8:36   ` Philip Kaludercic
2023-05-23 11:18     ` Eli Zaretskii
2023-05-23 12:13       ` Po Lu
2023-05-23 18:46       ` Augustin Chéneau (BTuin)
2023-05-24  6:32         ` Juri Linkov
2023-05-24 20:09           ` Augustin Chéneau (BTuin)
2023-05-24  3:34     ` David Masterson
2023-05-24 10:26       ` Philip Kaludercic
2023-05-28 21:17     ` Björn Bidar
  -- strict thread matches above, loose matches on Subject: below --
2023-05-27  7:12 [PROPOSAL] " Payas Relekar

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87wn0ytefw.fsf@gmail.com \
    --to=djcb.bulk@gmail.com \
    --cc=emacs-devel@gnu.org \
    /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 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.