From: "Ludovic Courtès" <ludovic.courtes@inria.fr>
To: zimoun <zimon.toutoune@gmail.com>
Cc: 43679@debbugs.gnu.org
Subject: [bug#43679] [PATCH 0/5] Add '--with-toolchain' package transformation option
Date: Wed, 30 Sep 2020 10:46:29 +0200 [thread overview]
Message-ID: <871rij4pp6.fsf@gnu.org> (raw)
In-Reply-To: <865z7wuajc.fsf@gmail.com> (zimoun's message of "Tue, 29 Sep 2020 12:44:55 +0200")
Hi,
zimoun <zimon.toutoune@gmail.com> skribis:
> On Mon, 28 Sep 2020 at 21:53, Ludovic Courtès <ludo@gnu.org> wrote:
>> From: Ludovic Courtès <ludovic.courtes@inria.fr>
>
>> One thing I wasn’t entirely sure about: ‘--with-toolchain’ changes
>> the toolchain of the specified package, not that of its dependents.
>> This assumes that the toolchains all follow the same ABI. This is
>> the case for C, apparently, maybe not for C++. Should it instead
>> change to toolchain of the package’s dependents as well?
>>
>> Something like:
>>
>> guix build guile --with-toolchain=guile@3.0.4=clang-toolchain
>>
>> generates working code.
[...]
> However, ’–with-toolchain’ can be misleading since it is
> ’gnu-build-system’ and C/C++ software specific. I mean, the patch #4
> adding ’build-system-with-toolchain’ contains:
>
> + (define toolchain-packages
> + ;; These are the GNU toolchain packages pulled in by GNU-BUILD-SYSTEM and
> + ;; all the build systems that inherit from it. Keep the list in sync with
> + ;; 'standard-packages' in (guix build-system gnu).
> + '("gcc" "binutils" "libc" "libc:static" "ld-wrapper"))
> +
> + (define (lower* . args)
> + (let ((lowered (apply lower args)))
> + (bag
> + (inherit lowered)
> + (build-inputs
> + (append (fold alist-delete
> + (bag-build-inputs lowered)
> + toolchain-packages)
> + toolchain)))))
Yeah this option is meant for C/C++ as I wrote above and (I think) in
the documentation.
> Another example a bit out-of-scope is to rebuild all the Emacs stack
> using the package ’emacs-next’ instead of ’emacs’. The
> ’emacs-build-system’ depends on ’emacs-minimal’ but some packages (see
> ’emacs-magit’) rewrite that using instead ’emacs-no-x’. It could be
> nice to be able to write:
>
> guix build -m manifest.m --with-toolchain=emacs-next-toolchain
Here you’d use ‘--with-input’, though package transformation options
have no effect when using a manifest.
> In summary, does it make sense, either:
>
> - change the ’–with-toolchain’ to ’–with-gcc-toolchain’
‘--with-gcc-toolchain=clang-toolchain’ would look strange. :-)
> - tweak ’build-system-with-toolchain’ to pass ’toolchain-packages’ as
> parameter somehow and be able to run:
>
> guix build coq --with-toolchain=coq=ocaml-toolchain4.07
Can’t you use ‘--with-input=ocamlX.Y=ocamlA.B’ in this case? If not, we
could devise a separate option rather than overload this one.
>> Another issue is that since we use ‘package-input-rewriting/spec’,
>> we can’t change the toolchain of core packages like Guile or Perl
>> without rebuilding the world. For example, if we omit “@3.0.4”
>> in the example above, we rebuild a “guile” package deep down and
>> everything that follows (aka. “the world”).
>
> Yeah but that’s maybe what people want: rebuild the world with another
> toolchain, probably optimized for some specific machine (HPC cluster).
Yes, though it doesn’t necessarily make sense. :-)
But yeah, perhaps rebuilding everything above the given package would be
more in line with what people expect.
>> Another option I considered was to graft the package that
>> ‘--with-toolchain’ targets instead of rebuilding its dependents.
>> Again that’d only work if the resulting binaries are ABI-compatible,
>> but maybe that’s a reasonable assumption. It would definitely save
>> build time. Should it be grafted, or should there be a separate
>> option to do that? Thoughts?
>
> From my perspective, it should be another option. For example, I
> imagine people want to rebuild all the stack with Name-It© compiler. Or
> the Name-It© compiler could be not-ABI compatible.
I’m not interested in proprietary compilers if that’s what you have in
mind. Besides, the SysV ABI is defined for C, so normally all C
compilers produce ABI-compatible code. There are exceptions such as
OpenMP (Clang is moving to their own libomp, I think, whereas GCC has
libgomp.)
Thanks for your feedback!
Ludo’.
next prev parent reply other threads:[~2020-09-30 8:47 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-28 19:53 [bug#43679] [PATCH 0/5] Add '--with-toolchain' package transformation option Ludovic Courtès
2020-09-28 19:56 ` [bug#43679] [PATCH 1/5] gnu: gcc-toolchain: Add 'GUIX_LOCPATH' to the search paths Ludovic Courtès
2020-09-28 19:56 ` [bug#43679] [PATCH 2/5] gnu: clang-toolchain: " Ludovic Courtès
2020-09-28 19:56 ` [bug#43679] [PATCH 3/5] gnu: clang-toolchain: Create 'cc' and 'c++' symlinks Ludovic Courtès
2020-09-29 5:42 ` Efraim Flashner
2020-09-29 7:53 ` Ludovic Courtès
2020-10-05 12:14 ` Efraim Flashner
2020-10-08 7:04 ` Ludovic Courtès
2020-09-28 19:56 ` [bug#43679] [PATCH 4/5] packages: Add 'package-with-toolchain' Ludovic Courtès
2020-09-28 19:56 ` [bug#43679] [PATCH 5/5] guix build: Add '--with-toolchain' Ludovic Courtès
2020-09-29 10:44 ` [bug#43679] [PATCH 0/5] Add '--with-toolchain' package transformation option zimoun
2020-09-30 8:46 ` Ludovic Courtès [this message]
2020-09-30 13:32 ` zimoun
2020-09-30 16:58 ` Ludovic Courtès
2020-10-09 9:12 ` [bug#43679] [PATCH v2 0/5] Add '--with-c-toolchain' Ludovic Courtès
2020-10-09 9:12 ` [bug#43679] [PATCH v2 1/5] gnu: gcc-toolchain: Add 'GUIX_LOCPATH' to the search paths Ludovic Courtès
2020-10-09 9:12 ` [bug#43679] [PATCH v2 2/5] gnu: clang-toolchain: " Ludovic Courtès
2020-10-09 9:12 ` [bug#43679] [PATCH v2 3/5] gnu: clang-toolchain: Create 'cc' and 'c++' symlinks Ludovic Courtès
2020-10-09 9:12 ` [bug#43679] [PATCH v2 4/5] packages: Add 'package-with-c-toolchain' Ludovic Courtès
2020-10-09 9:12 ` [bug#43679] [PATCH v2 5/5] guix build: Add '--with-c-toolchain' Ludovic Courtès
2020-10-12 16:27 ` bug#43679: [PATCH v2 0/5] " Ludovic Courtès
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://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=871rij4pp6.fsf@gnu.org \
--to=ludovic.courtes@inria.fr \
--cc=43679@debbugs.gnu.org \
--cc=zimon.toutoune@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/guix.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).