[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
30/47: gnu: gcc-13, gcc-14: Support being used as parent for gcc-static.
From: |
guix-commits |
Subject: |
30/47: gnu: gcc-13, gcc-14: Support being used as parent for gcc-static. |
Date: |
Sat, 9 Nov 2024 09:37:53 -0500 (EST) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 2b46f86c345f547a75c9488563f5c4a236dd5ee5
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon Nov 4 21:01:59 2024 +0100
gnu: gcc-13, gcc-14: Support being used as parent for gcc-static.
* gnu/packages/gcc.scm (gcc-13)[arguments]: Use quasiquote instead of
g-expressions.
(gcc-14)[arguments]: Likewise.
Change-Id: I22269b31d49868effe967d46247b189ed9a9d394
---
gnu/packages/gcc.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 850a14cb1c..befbbda027 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -811,10 +811,10 @@ It also includes runtime support libraries for these
languages.")
(snippet gcc-canadian-cross-objdump-snippet)))
(arguments
(substitute-keyword-arguments (package-arguments gcc-11)
- ((#:phases phases #~%standard-phases)
+ ((#:phases phases '%standard-phases)
(if (target-hurd?)
- #~(modify-phases #$phases
- (delete 'patch-hurd-libpthread))
+ `(modify-phases ,phases
+ (delete 'patch-hurd-libpthread))
phases))))
(properties
`((compiler-cpu-architectures
@@ -841,8 +841,8 @@ It also includes runtime support libraries for these
languages.")
(modules '((guix build utils)))
(snippet gcc-canadian-cross-objdump-snippet)))
(arguments (substitute-keyword-arguments (package-arguments gcc-13)
- ((#:phases phases #~%standard-phases)
- #~(modify-phases #$phases
+ ((#:phases phases '%standard-phases)
+ `(modify-phases ,phases
(add-before 'configure 'pre-x86-configure
(lambda _
(substitute* "gcc/config/i386/t-linux64"
- 09/47: maint: Add installer dependencies to the manifest., (continued)
- 09/47: maint: Add installer dependencies to the manifest., guix-commits, 2024/11/09
- 11/47: installer: Align comments., guix-commits, 2024/11/09
- 17/47: installer: Add static-networking template., guix-commits, 2024/11/09
- 18/47: installer: Support dry-run from Guile via store., guix-commits, 2024/11/09
- 22/47: gnu: Add basic support for x86_64-pc-gnu target, aka 64bit Hurd., guix-commits, 2024/11/09
- 27/47: gnu: patch: Fix build for the 64bit Hurd., guix-commits, 2024/11/09
- 25/47: gnu: elfutils: Fix build for 64bit Hurd., guix-commits, 2024/11/09
- 10/47: installer: Remove unused (newt) imports., guix-commits, 2024/11/09
- 13/47: installer: Fix file-name typos., guix-commits, 2024/11/09
- 26/47: gnu: grep: Fix build for the 64bit Hurd., guix-commits, 2024/11/09
- 30/47: gnu: gcc-13, gcc-14: Support being used as parent for gcc-static.,
guix-commits <=
- 29/47: gnu: libstdc++: Support the 64bit Hurd., guix-commits, 2024/11/09
- 46/47: gnu: grub: Fix build for the 64bit Hurd., guix-commits, 2024/11/09
- 45/47: gnu: inetutils: Fix build for the 64bit Hurd., guix-commits, 2024/11/09
- 08/47: system: examples: Add devel-hurd.tmpl., guix-commits, 2024/11/09
- 12/47: installer: Use "partitioning-page" consistently., guix-commits, 2024/11/09
- 14/47: installer: Use `%' for parameter %run-command-in-installer., guix-commits, 2024/11/09
- 19/47: gnu: gnumach: Update to v1.8+git20240406., guix-commits, 2024/11/09
- 21/47: gnu: gcc: Add indirections current-gcc, current-gcc-toolchain., guix-commits, 2024/11/09
- 15/47: installer: Add dry-run?, guix-commits, 2024/11/09
- 16/47: installer: Add "Kernel" page to select the Hurd., guix-commits, 2024/11/09