gnu: binutils-gold: Skip gold testsuite on some architectures.

* gnu/packages/base.scm (binutils-gold)[arguments]: Add a phase on some
architecturest to skip the gold testsuite.
This commit is contained in:
Efraim Flashner 2021-12-21 16:15:03 +02:00
parent 49546b6b8c
commit 9834ff5d32
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -606,7 +606,15 @@ (define-public binutils-gold
(add-after 'patch-source-shebangs 'patch-more-shebangs (add-after 'patch-source-shebangs 'patch-more-shebangs
(lambda _ (lambda _
(substitute* "gold/Makefile.in" (substitute* "gold/Makefile.in"
(("/bin/sh") (which "sh"))))))))) (("/bin/sh") (which "sh")))))
;; Multiple failing tests on some architectures in the gold testsuite.
,@(if (or (target-arm?)
(target-ppc32?))
'((add-after 'unpack 'skip-gold-testsuite
(lambda _
(substitute* "gold/Makefile.in"
((" testsuite") " ")))))
'())))))
(native-inputs (native-inputs
`(("bc" ,bc))))) `(("bc" ,bc)))))