me
/
guix
Archived
1
0
Fork 0

gnu: %boot3-inputs: Add missing input.

* gnu/packages/commencement.scm (%boot3-inputs): When building on
riscv64-linux add gcc:lib.
Efraim Flashner 2021-07-27 07:23:40 +00:00
parent ef9ecd4fd3
commit ed2ca2dcb5
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 3 additions and 0 deletions

View File

@ -3578,6 +3578,9 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%"
(define (%boot3-inputs)
;; 4th stage inputs.
`(("gcc" ,gcc-final)
,@(if (target-riscv64?)
`(("gcc:lib" ,gcc-final "lib"))
'())
("ld-wrapper" ,ld-wrapper-boot3)
,@(alist-delete "gcc" (%boot2-inputs))))