gnu: gcc-boot0: Fix building on powerpc64le-linux.

* gnu/packages/commencement.scm (gcc-boot0)[inputs]: When building for
powerpc64le-linux use libstdc++-boot0 from gcc-5.

Change-Id: I21df5ba91dcff9f6b83977996ef2d15306ab6ca9
This commit is contained in:
Efraim Flashner 2024-12-10 13:10:14 +02:00 committed by Janneke Nieuwenhuizen
parent fe48aaa96c
commit 92ff43f6f3
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -2485,6 +2485,7 @@ (define gcc-boot0
;; The libstdc++ that libcc1 links against.
("libstdc++" ,(match (%current-system)
("powerpc64le-linux" (make-libstdc++-boot0 gcc-5))
("riscv64-linux" (make-libstdc++-boot0 gcc-7))
("x86_64-gnu" (make-libstdc++-boot0 gcc-14))
(_ libstdc++-boot0)))