gnu: %boot3-inputs: Add missing input.
* gnu/packages/commencement.scm (%boot3-inputs): When building on riscv64-linux add gcc:lib.
parent
ef9ecd4fd3
commit
ed2ca2dcb5
|
@ -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))))
|
||||
|
||||
|
|
Reference in New Issue