mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
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>
This commit is contained in:
committed by
Sharlatan Hellseher
parent
c98a768f17
commit
b18d42fd0b
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user