gnu: go-1.17: Fix test suite on powerpc64le-linux.

* gnu/packages/golang.scm (go-1.17)[arguments]: Use custom
'patch-gcc:lib phase on powerpc64le-linux. Add a phase to adjust the
allowed size of an executable in the test suite.
[inputs]: Keep gcc:lib as an input on powerpc64le-linux.
(go-1.18)[arguments]: Delete custom 'adjust-test-suite phase.
This commit is contained in:
Efraim Flashner 2023-04-05 15:53:38 +03:00 committed by Maxim Cournoyer
parent 8a17609dd0
commit 34e5ba942e
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -700,7 +700,6 @@ (define-public go-1.17
(substitute* "src/time/zoneinfo_unix.go"
(("/usr/share/zoneinfo/") tzdata-path)))))
;; Keep this synchronized with the package inputs.
;; Also keep syncthonized with later versions of go.
,@(if (or (target-arm?) (target-ppc64le?))
'((add-after 'unpack 'patch-gcc:lib
(lambda* (#:key inputs #:allow-other-keys)
@ -864,6 +863,7 @@ (define-public go-1.18
(substitute-keyword-arguments (package-arguments go-1.17)
((#:phases phases)
`(modify-phases ,phases
(delete 'adjust-test-suite)
;; See the platforms using this phase in go-1.17.
(replace 'patch-gcc:lib
(lambda* (#:key inputs #:allow-other-keys)