[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
65/74: gnu: bootstrap: %bootstrap-glibc: Fix linking on armhf-linux.
From: |
guix-commits |
Subject: |
65/74: gnu: bootstrap: %bootstrap-glibc: Fix linking on armhf-linux. |
Date: |
Wed, 18 Dec 2024 08:07:19 -0500 (EST) |
janneke pushed a commit to branch core-packages-team
in repository guix.
commit f81d7e7d8cfe66b071c5db671d69b0784fd07aa6
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Dec 10 17:00:19 2024 +0200
gnu: bootstrap: %bootstrap-glibc: Fix linking on armhf-linux.
* gnu/packages/bootstrap.scm (%bootstrap-glibc)[arguments]: When
building for armhf-linux remove a reference to a non-existent library.
Change-Id: I587ba7a40eb05b354e4a11d07e9f4313108e43d1
---
gnu/packages/bootstrap.scm | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index ad1a0bc56d..d526428482 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -781,8 +781,12 @@ $out/bin/guile --version~%"
''("lib/libc.so" "lib/libpthread.so"))
(else
''("lib/libc.so")))
- (("/[^ ]+/lib/(libc|libm|libh|libpthread|ld)" _ prefix)
- (string-append out "/lib/" prefix)))))))))
+ (("/[^ ]+/lib/(libc|libh|libm|libpthread|ld)" _ prefix)
+ (string-append out "/lib/" prefix))
+ ,@(if (target-arm32?)
+ `((substitute* "lib/libpthread.so"
+ (("/[^ ]+/lib/libpthread_nonshared\\.a") "")))
+ `()))))))))
(inputs
`(("tar" ,(bootstrap-executable "tar" (%current-system)))
("xz" ,(bootstrap-executable "xz" (%current-system)))
- 39/74: gnu: cyrus-sasl: Fix build mwith gcc-14., (continued)
- 39/74: gnu: cyrus-sasl: Fix build mwith gcc-14., guix-commits, 2024/12/18
- 41/74: gnu: bdb-4.8: Fix build with gcc-14., guix-commits, 2024/12/18
- 34/74: gnu: gcc-boot0: Fix building for aarch64-linux., guix-commits, 2024/12/18
- 20/74: gnu: libstdc++: Fix build for x86-linux with gcc-14., guix-commits, 2024/12/18
- 35/74: gnu: zziplib: Update to 0.13.78; fixes build with gcc-14., guix-commits, 2024/12/18
- 42/74: gnu: gamin: Fix build with gcc-14., guix-commits, 2024/12/18
- 45/74: gnu: openldap: Update to 2.6.9; fixes build with gcc-14., guix-commits, 2024/12/18
- 58/74: gnu: netdde: Use -Wno-error=., guix-commits, 2024/12/18
- 56/74: gnu: flex: Use -Wno-error= for cross-build., guix-commits, 2024/12/18
- 67/74: bash-minimal: Use gcc-14 hurd/x86-linux build fix for all platforms., guix-commits, 2024/12/18
- 65/74: gnu: bootstrap: %bootstrap-glibc: Fix linking on armhf-linux.,
guix-commits <=
- 57/74: gnu: hurd: Use -Wno-error=., guix-commits, 2024/12/18
- 16/74: gnu: Re-Add automake-1.16.5., guix-commits, 2024/12/18
- 21/74: gnu: torsocks: Fix build with gcc-14., guix-commits, 2024/12/18
- 38/74: gnu: epson-inkjet-printer-escpr: Fix build with gcc-14., guix-commits, 2024/12/18
- 49/74: gnu: Use cryptsetup-minimal instead of cryptsetup., guix-commits, 2024/12/18
- 66/74: gnu: gcc-4.7: Add gcc-wrapper from gcc-final., guix-commits, 2024/12/18
- 51/74: gnu: python-numpy: Update to 1.26.4 and fix build with gcc-14., guix-commits, 2024/12/18
- 63/74: gnu: git: Use -Wno-error= for Hurd cross-build., guix-commits, 2024/12/18
- 48/74: gnu: Add cryptsetup-minimal., guix-commits, 2024/12/18
- 74/74: gnu: clang-runtime: Remove gcc-12,13,14 from native-ipnuts., guix-commits, 2024/12/18