GNU bug report logs -
#36477
Add Guix System cross-compilation support
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Mathieu Othacehe <m.othacehe <at> gmail.com> writes:
> * gnu/packages/shells.scm (tcsh)[arguments]: Replace "cc" by "gcc" as
> native gethost compiler when cross-compiling.
> ---
> gnu/packages/shells.scm | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm
> index f8c0fdf71f..6eed89396e 100644
> --- a/gnu/packages/shells.scm
> +++ b/gnu/packages/shells.scm
> @@ -11,6 +11,7 @@
> ;;; Copyright © 2017 Arun Isaac <arunisaac <at> systemreboot.net>
> ;;; Copyright © 2019 Meiyo Peng <meiyo.peng <at> gmail.com>
> ;;; Copyright © 2019 Timothy Sample <samplet <at> ngyro.com>
> +;;; Copyright © 2019 Mathieu Othacehe <m.othacehe <at> gmail.com>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -356,6 +357,14 @@ written by Paul Haahr and Byron Rakitzis.")
> (arguments
> `(#:phases
> (modify-phases %standard-phases
> + ,@(if (%current-target-system)
> + '((add-before 'configure 'set-cross-cc
> + (lambda _
> + (substitute* "configure"
> + (("CC_FOR_GETHOST=\"cc\"")
> + "CC_FOR_GETHOST=\"gcc\""))
> + #t)))
> + '())
Actually, can we pass this in #:configure-flags instead? Maybe even
also for the native build?
[signature.asc (application/pgp-signature, inline)]
This bug report was last modified 5 years and 270 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.