[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
61/63: REMOVEME gnu: commencement: bash-mesboot: Avoid rebuild.
From: |
guix-commits |
Subject: |
61/63: REMOVEME gnu: commencement: bash-mesboot: Avoid rebuild. |
Date: |
Thu, 12 Dec 2024 05:29:16 -0500 (EST) |
janneke pushed a commit to branch core-packages-team-old
in repository guix.
commit f7088d14b50721f720341c07bfc15472e445c86b
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Dec 3 20:18:03 2024 +0100
REMOVEME gnu: commencement: bash-mesboot: Avoid rebuild.
XXX This avoids a boot0-world rebuild, for the gcc-14 transition we only
need
to rebuild starting from gcc-boot0.
IWBN if we could program commencement in a way that it's more robust wrt
base
package changes (or more flexible to counter such changes?).
Before we point the build farm to core-packages-team, we probably want to
remove this patch.
* gnu/packages/commencement.scm (bash-mesboot): Change into package
definition
in order to undo #:configure-flags change made in bash-minimal.
Change-Id: I2517e7fd9e2fa3579279b2c85c4f2121ceee1a76
---
gnu/packages/commencement.scm | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index b23d2beaea..6dacb61382 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1851,7 +1851,22 @@ exec " gcc "/bin/" program
;; These packages are needed to complete the rest of the bootstrap.
;; In the future, Gash et al. could handle it directly, but it's not
;; ready yet.
-(define bash-mesboot (mesboot-package "bash-mesboot" static-bash))
+(define bash-mesboot
+ (let ((bash (mesboot-package "bash-mesboot" static-bash)))
+ (package
+ (inherit bash)
+ (arguments
+ (substitute-keyword-arguments (package-arguments bash)
+ ;; XXX REMOVEME Avoid a boot0-world rebuild for now by removing this
+ ;; unnecessary gcc-14 fix.
+ ((#:configure-flags flags)
+ `(cons*
+ "--disable-shared" "LDFLAGS=-static"
+ (list
+ ,@(fold delete
+ (primitive-eval (gexp->approximate-sexp flags))
+ '("CFLAGS=-g -O2 -Wno-implicit-function-declaration"
+ "--disable-shared" "LDFLAGS=-static"))))))))))
(define sed-mesboot (mesboot-package "sed-mesboot" sed))
;; "sed" from Gash-Utils lacks the 'w' command as of 0.2.0.
- 25/63: gnu: cmake-bootstrap: Fix build with gcc-14., (continued)
- 25/63: gnu: cmake-bootstrap: Fix build with gcc-14., guix-commits, 2024/12/12
- 29/63: gnu: libxaw3d: Update to 1.6.6, fixes build with gcc-14., guix-commits, 2024/12/12
- 31/63: gnu: localed: Fix build with gcc-14., guix-commits, 2024/12/12
- 36/63: gnu: epson-inkjet-printer-escpr: Fix build with gcc-14., guix-commits, 2024/12/12
- 43/63: gnu: openldap: Update to 2.6.9; fixes build with gcc-14., guix-commits, 2024/12/12
- 49/63: gnu: python-numpy: Update to 1.26.4 and fix build with gcc-14., guix-commits, 2024/12/12
- 55/63: gnu: %bootstrap-glibc: Fix linking on armhf-linux., guix-commits, 2024/12/12
- 58/63: Revert "gnu: ath9k-firmware: Remove CMAKE_SYSTEM_NAME override.", guix-commits, 2024/12/12
- 62/63: REMOVEME gnu: commencement: static-bash-for-glibc: Avoid rebuild., guix-commits, 2024/12/12
- 60/63: DRAFT gnu: gcc: Update gcc, gcc-toolchain, libgccjit to 14., guix-commits, 2024/12/12
- 61/63: REMOVEME gnu: commencement: bash-mesboot: Avoid rebuild.,
guix-commits <=
- 24/63: gnu: xmlto: Fix build with gcc-14., guix-commits, 2024/12/12
- 45/63: gnu: tdb: Update to 1.4.12; fixes build with gcc-14., guix-commits, 2024/12/12
- 44/63: gnu: pth: Fix build with gcc-14., guix-commits, 2024/12/12
- 47/63: gnu: Use cryptsetup-minimal instead of cryptsetup., guix-commits, 2024/12/12
- 52/63: gnu: tevent: Update to 0.16.1; fixes build with gcc-14., guix-commits, 2024/12/12
- 53/63: gnu: ldb: Update to 2.9.2; fixes build with gcc-14., guix-commits, 2024/12/12
- 56/63: guix: build-system: cmake: Rework cross compilation., guix-commits, 2024/12/12
- 05/63: gnu: libffi: Fix build for x86_64-linux with gcc-14., guix-commits, 2024/12/12
- 08/63: gnu: gettext: Fix build with gcc-14., guix-commits, 2024/12/12
- 46/63: gnu: Add cryptsetup-minimal., guix-commits, 2024/12/12