diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-12-04 22:38:37 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-12-05 01:13:02 +0800 |
commit | 7b64a96326bde6b51f887a96345ba89c115ceeae (patch) | |
tree | 8651b3f9261cf89a406499e52049370558195a67 /gnu/packages | |
parent | e00ca95e08bc1cc2cb39f3178485ef16defce0be (diff) | |
download | guix-7b64a96326bde6b51f887a96345ba89c115ceeae.tar.gz guix-7b64a96326bde6b51f887a96345ba89c115ceeae.zip |
Partial revert "gnu: make-bootstrap: Update gcc-static to gcc-14, for the 64bit Hurd."
This partially reverts commit ec8a5ec15f898e864705e5a5c834532e3fa8d0a4.
This part accidentally triggered a world rebuild for non-x86 architectures.
Change-Id: Id2f9bcbcda8dc86ea407e9a7857a854dc1a742b5
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/make-bootstrap.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm index e0dcca7b33..59c117f226 100644 --- a/gnu/packages/make-bootstrap.scm +++ b/gnu/packages/make-bootstrap.scm @@ -538,7 +538,8 @@ for `sh' in $PATH, and without nscd, and with static NSS modules." (substitute* (cons "gcc/config/rs6000/sysv4.h" (find-files "gcc/config" "^gnu-user.*\\.h$")) - ((" -lgcc_s}}") "}}")))))))) + ((" -lgcc_s}}") "}}")) + #$@(if (target-hurd64?) '() '(#t)))))))) (inputs `(("zlib:static" ,zlib "static") ("isl:static" ,isl "static") |