[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/40: Revert "Partial revert "gnu: bootstrap: %bootstrap-gcc: Also wrap
From: |
guix-commits |
Subject: |
01/40: Revert "Partial revert "gnu: bootstrap: %bootstrap-gcc: Also wrap g++ for the 64bit Hurd."" |
Date: |
Tue, 10 Dec 2024 08:30:11 -0500 (EST) |
janneke pushed a commit to branch core-packages-team
in repository guix.
commit 4af6ab204e75ac47724599310981e898f244666b
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Thu Dec 5 20:54:58 2024 +0100
Revert "Partial revert "gnu: bootstrap: %bootstrap-gcc: Also wrap g++ for
the 64bit Hurd.""
This cleanup was reverted because it led to a world rebuild.
This reverts commit 006679d1e6ca7acea0629b4f019c8cf89cde08be.
Change-Id: Id14fcc35fb8d550644b4d6cebace110ae0bab59e
---
gnu/packages/bootstrap.scm | 59 ++++++++++++++++++----------------------------
1 file changed, 23 insertions(+), 36 deletions(-)
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index db20e71fe0..d14bb68425 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -774,14 +774,14 @@ $out/bin/guile --version~%"
(chmod "lib" #o755)
;; Patch linker scripts so they refer to the right file-names.
- ,@(if (target-hurd64?)
- '((substitute* '("lib/libc.so" "lib/libm.so")
- (("/[^ ]+/lib/(libc|libm|libh|ld)" _ prefix)
- (string-append out "/lib/" prefix))))
- '((substitute* "lib/libc.so"
- (("/[^ ]+/lib/(libc|ld)" _ prefix)
- (string-append out "/lib/" prefix)))
- #t))))))))
+ ,(if (target-hurd64?)
+ '(substitute* '("lib/libc.so" "lib/libm.so")
+ (("/[^ ]+/lib/(libc|libm|libh|ld)" _ prefix)
+ (string-append out "/lib/" prefix)))
+ '(substitute* "lib/libc.so"
+ (("/[^ ]+/lib/(libc|ld)" _ prefix)
+ (string-append out "/lib/" prefix))))
+ #t))))))
(inputs
`(("tar" ,(bootstrap-executable "tar" (%current-system)))
("xz" ,(bootstrap-executable "xz" (%current-system)))
@@ -873,22 +873,20 @@ $out/bin/guile --version~%"
(let ((builddir (getcwd))
(bindir (string-append out "/bin")))
- ,@(if (target-hurd64?)
- `((define (wrap-program program)
- (let ((wrapped (format #f ".~a-wrapped" program)))
- (rename-file program wrapped)
- (call-with-output-file program
- (lambda (p)
- (format p "#!~a
+ (define (wrap-program program)
+ (let ((wrapped (format #f ".~a-wrapped" program)))
+ (rename-file program wrapped)
+ (call-with-output-file program
+ (lambda (p)
+ (format p "#!~a
exec ~a/bin/~a -B~a/lib \
-Wl,-rpath -Wl,~a/lib \
-Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%"
- bash
- out wrapped
- libc libc libc
- ,(glibc-dynamic-linker)))))
- (chmod program #o555)))
- '())
+ bash
+ out wrapped
+ libc libc libc
+ ,(glibc-dynamic-linker)))))
+ (chmod program #o555))
(with-directory-excursion out
(invoke tar "xvf"
@@ -896,21 +894,10 @@ exec ~a/bin/~a -B~a/lib \
(with-directory-excursion bindir
(chmod "." #o755)
- ,@(if (target-hurd64?)
- `((for-each wrap-program '("gcc" "g++")))
- `((rename-file "gcc" ".gcc-wrapped")
- (call-with-output-file "gcc"
- (lambda (p)
- (format p "#!~a
-exec ~a/bin/.gcc-wrapped -B~a/lib \
- -Wl,-rpath -Wl,~a/lib \
- -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%"
- bash
- out libc libc libc
- ,(glibc-dynamic-linker))))
-
- (chmod "gcc" #o555)
- #t))))))))
+ (for-each wrap-program
+ ,(if (target-hurd64?)
+ ''("gcc" "g++")
+ ''("gcc")))))))))
(inputs
`(("tar" ,(bootstrap-executable "tar" (%current-system)))
("xz" ,(bootstrap-executable "xz" (%current-system)))
- branch core-packages-team created (now 644019dcfe), guix-commits, 2024/12/10
- 02/40: Revert "Partial revert "gnu: bootstrap: %bootstrap-glibc: Also fix libm.so."", guix-commits, 2024/12/10
- 06/40: gnu: commencement: gcc-boot0: Fix build for x86-linux with gcc-14., guix-commits, 2024/12/10
- 01/40: Revert "Partial revert "gnu: bootstrap: %bootstrap-gcc: Also wrap g++ for the 64bit Hurd."",
guix-commits <=
- 24/40: gnu: commencement: static-bash-for-glibc Fix x86-linux build., guix-commits, 2024/12/10
- 13/40: gnu: gettext: Fix build with gcc-14., guix-commits, 2024/12/10
- 26/40: gnu: guile-lzlib: Fix build with gcc-14., guix-commits, 2024/12/10
- 33/40: gnu: llvm-13: Fix build with gcc-14., guix-commits, 2024/12/10
- 21/40: gnu: elfutils: Update to 0.192; fixing build with gcc-14., guix-commits, 2024/12/10
- 04/40: gnu: %bootstrap-glibc: Patch more files., guix-commits, 2024/12/10
- 10/40: gnu: libffi: Fix build for x86_64-linux with gcc-14., guix-commits, 2024/12/10
- 30/40: gnu: xmlto: Fix build with gcc-14., guix-commits, 2024/12/10
- 29/40: gnu: python-lxml: Update to 5.2.2; fixing build with gcc-14., guix-commits, 2024/12/10
- 38/40: DRAFT gnu: gcc: Update gcc, gcc-toolchain to 14., guix-commits, 2024/12/10