diff options
| author | Roman Scherer <roman@burningswell.com> | 2026-02-19 10:55:38 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-20 22:18:20 +0000 |
| commit | b18d42fd0b59d3e79a589ebca1258ac4a99c04fd (patch) | |
| tree | 2c0729f869a57267a729dde817e362ae493ed258 /gnu | |
| parent | c98a768f176a3a37cd4f2ba5b81915af4b358f11 (diff) | |
gnu: go-modernc-org-cc-v4: Skip failing tests on aarch64.
* gnu/packages/golang-xyz.scm (go-modernc-org-cc-v4)[arguments]: Add
The C parser does not implement GCC built-in vector types (__Float32x4_t,
__Float64x2_t, etc.) used in glibc's bits/math-vector.h since glibc 2.38.
See <https://gitlab.com/cznic/cc/-/issues/155>.
Change-Id: Iaa4fdf085c93d708ce1938b00cd12f1552970660
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 0cdcda72a52..c522a4a775b 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -28926,6 +28926,15 @@ Program Argument Syntax Conventions}.") (list #:import-path "modernc.org/cc/v4" #:unpack-path "modernc.org/cc" + ;; On aarch64, TestParse, TestTranslate, and TestMake fail because + ;; the C parser does not implement GCC built-in vector types + ;; (__Float32x4_t, __Float64x2_t, etc.) used in glibc's + ;; bits/math-vector.h since glibc 2.38. + ;; See <https://gitlab.com/cznic/cc/-/issues/155>. + #:test-flags + (if (target-aarch64?) + #~(list "-skip" "TestParse|TestTranslate|TestMake") + #~'()) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'copy-source-assets |
