This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch bootstrap-team
in repository guix.
The following commit(s) were added to refs/heads/bootstrap-team by this push:
new 492e5c1ec7 gnu: musl-boot: Don't use the gcc wrapper.
492e5c1ec7 is described below
commit 492e5c1ec7200da7b47cb5d3bd61842b5426812a
Author: Ekaitz Zarraga <[email protected]>
AuthorDate: Thu Aug 27 20:48:54 2026 +0200
gnu: musl-boot: Don't use the gcc wrapper.
* gnu/packages/commencement.scm (musl-boot): Disable the wrapper. Add
`--disable-shared`.
(gcc-mesboot-10, gcc-muslboot): Remove CC=musl-gcc and use gcc instead.
---
gnu/packages/commencement.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 78ea2b535e..3965840184 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -14,7 +14,7 @@
;;; Copyright © 2021 Julien Lepiller <[email protected]>
;;; Copyright © 2021 Pierre Langlois <[email protected]>
;;; Copyright © 2022, 2024 Ricardo Wurmus <[email protected]>
-;;; Copyright © 2022-2024 Ekaitz Zarraga <[email protected]>
+;;; Copyright © 2022-2026 Ekaitz Zarraga <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2040,8 +2040,8 @@ ac_cv_c_float_format='IEEE (little-endian)'
"/bin/sh")
(string-append "--syslibdir=" #$output "/lib")
"CC=gcc"
- "--enable-gcc-wrapper"))
- ((#:phases phases #~'%standard-phases)
+ "--disable-shared"))
+ #;((#:phases phases #~'%standard-phases)
#~(modify-phases #$phases
(delete 'remove-complex)
(add-after 'install 'symlink-dynamic-linker
@@ -2108,7 +2108,7 @@ ac_cv_c_float_format='IEEE (little-endian)'
(invoke "patch" "--force" "-p1" "-i" patch-file))))
(replace 'setenv
(lambda _
- (setenv "CC" "musl-gcc")
+ (setenv "CC" "gcc")
(setenv "CPLUS_INCLUDE_PATH" (getenv "C_INCLUDE_PATH"))))))))
(native-search-paths
(list (search-path-specification
@@ -2890,7 +2890,7 @@ exec " gcc "/bin/" program
; modular core/language
downloads
(add-after 'unpack 'setenv
(lambda _
- (setenv "CC" "musl-gcc")))
+ (setenv "CC" "gcc")))
#;
(add-before 'configure 'configure-libiberty
(lambda _