[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
52/58: gnu: Use gcc-14, gcc-toolchain-14 on the 64bit Hurd.
From: |
guix-commits |
Subject: |
52/58: gnu: Use gcc-14, gcc-toolchain-14 on the 64bit Hurd. |
Date: |
Sun, 24 Nov 2024 02:50:42 -0500 (EST) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 55654c05fe45127e85fead81e90c0516c760d93a
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon Nov 18 09:46:17 2024 +0100
gnu: Use gcc-14, gcc-toolchain-14 on the 64bit Hurd.
This enables building packages in a 64bit childhurd. It will not enable
offloading to a childhurd.
* guix/utils.scm (host-hurd?, host-x86-64, host-hurd64?): New procedures.
* gnu/packages/commencement.scm (gcc-toolchain): Use them to determine if
the
host is a 64bit Hurd, and use gcc-toolchain-14.
* gnu/packages/gcc.scm (gcc): Likewise, to use gcc-14.
Change-Id: I55e43fdc61e3ea5fc13065fc7ca854b951c94930
---
gnu/packages/commencement.scm | 4 +++-
gnu/packages/gcc.scm | 5 ++++-
guix/utils.scm | 19 +++++++++++++++++++
3 files changed, 26 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index a14de3002f..3f11bb3384 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -3642,7 +3642,9 @@ is the GNU Compiler Collection.")
;; The default GCC
(define-public gcc-toolchain
- gcc-toolchain-11)
+ (if (host-hurd64?)
+ gcc-toolchain-14
+ gcc-toolchain-11))
(define-public gcc-toolchain-aka-gcc
;; It's natural for users to try "guix install gcc". This package
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index e437bf5826..6247919fec 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -858,7 +858,10 @@ It also includes runtime support libraries for these
languages.")
;; Note: When changing the default gcc version, update
;; the gcc-toolchain-* definitions.
-(define-public gcc gcc-11)
+(define-public gcc
+ (if (host-hurd64?)
+ gcc-14
+ gcc-11))
;;;
diff --git a/guix/utils.scm b/guix/utils.scm
index e100c03365..537d0490e0 100644
--- a/guix/utils.scm
+++ b/guix/utils.scm
@@ -96,6 +96,9 @@
system-hurd?
target-hurd64?
system-hurd64?
+ host-hurd?
+ host-hurd64?
+ host-x86-64?
target-mingw?
target-x86-32?
target-x86-64?
@@ -729,6 +732,22 @@ a character other than '@'."
(and (system-hurd?)
(target-64bit? (%current-system))))
+(define (host-hurd?)
+ "Are we running on a Hurd system? This is almost never the right function,
+use target-hurd? or system-hurd? instead."
+ (equal? (utsname:sysname (uname)) "GNU"))
+
+(define (host-x86-64?)
+ "Are we running on a x86_64 system? This is almost never the right
+function, use target-x86-64? or system-x86-64? instead."
+ (equal? (utsname:machine (uname)) "x86_64"))
+
+(define (host-hurd64?)
+ "Are we running on a 64bit Hurd? This is almost never the right
+function, use target-hurd64? or system-hurd64? instead."
+ (and (host-hurd?)
+ (host-x86-64?)))
+
(define* (target-mingw? #:optional (target (%current-target-system)))
"Is the operating system of TARGET Windows?"
(and target
- 18/58: gnu: texinfo-4: Fix [cross-]build with gcc-14 and the 64bit Hurd., (continued)
- 18/58: gnu: texinfo-4: Fix [cross-]build with gcc-14 and the 64bit Hurd., guix-commits, 2024/11/24
- 24/58: gnu: cross-base: Update %xgcc to gcc-14, to support the 64bit Hurd., guix-commits, 2024/11/24
- 22/58: gnu: libssh: Fix [cross-]build with gcc-14 for 32bit., guix-commits, 2024/11/24
- 21/58: gnu: libedit: Fix [cross-]build with gcc-14 for 32bit., guix-commits, 2024/11/24
- 30/58: gnu: libgpg-error: Support the 64bit Hurd., guix-commits, 2024/11/24
- 36/58: gnu: rumpkernel: Update to f1ffd6405f225336e595a0f99f01095ed7438337., guix-commits, 2024/11/24
- 40/58: gnu: grub: Fix build for the 64bit Hurd., guix-commits, 2024/11/24
- 48/58: gnu: Add gdb-15.2, with support for the 64bit Hurd., guix-commits, 2024/11/24
- 38/58: gnu: hurd: Build fixes for the 64bit Hurd., guix-commits, 2024/11/24
- 51/58: system: examples: Add devel-hurd64.tmpl., guix-commits, 2024/11/24
- 52/58: gnu: Use gcc-14, gcc-toolchain-14 on the 64bit Hurd.,
guix-commits <=
- 55/58: gnu: bootstrap: %bootstrap-gcc: Also wrap g++ for the 64bit Hurd., guix-commits, 2024/11/24
- 54/58: gnu: hurd: Add refcounts-assert patch., guix-commits, 2024/11/24
- 35/58: gnu: netdde: Support the 64bit Hurd., guix-commits, 2024/11/24
- 43/58: gnu: commencement: gnumach-headers-boot0: Update to 1.8+git20240714., guix-commits, 2024/11/24
- 53/58: gnu: commencement: kernel-headers-boot0: Support the 64bit Hurd., guix-commits, 2024/11/24
- 34/58: gnu: netdde: Update to c0ef248dc7c5ccc1273e2a796f3ece30c5b645df., guix-commits, 2024/11/24
- 37/58: gnu: rumpkernel: Support the 64bit Hurd., guix-commits, 2024/11/24
- 42/58: gnu: m4: Fix build for the 64bit Hurd., guix-commits, 2024/11/24
- 56/58: gnu: commencement: libstdc++-boot0: Support the 64bit Hurd., guix-commits, 2024/11/24
- 31/58: gnu: openssl-3.0: Support the 64bit Hurd., guix-commits, 2024/11/24