diff options
-rw-r--r-- | gnu/packages/golang.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index d49a1ed1e6..3f79d9862e 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -900,6 +900,13 @@ in the style of communicating sequential processes (@dfn{CSP}).") (substitute* "src/cmd/go/testdata/script/cgo_path_space.txt" (("/bin/sh") (which "sh"))))) + (add-after 'unpack 'remove-failing-test + (lambda _ + ;; This test fails with newer gcc's + ;; https://github.com/golang/go/issues/57691 + (substitute* "src/cmd/cgo/internal/testsanitizers/asan_test.go" + ((".*arena_fail.*") "")))) + (add-after 'enable-external-linking 'enable-external-linking-1.21 (lambda _ ;; Invoke GCC to link any archives created with GCC (that is, |