mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: elfutils: Fix building on riscv64-linux.
* gnu/packages/elf.scm (elfutils)[arguments]: On riscv64-linux add a phase to skip failing test.
This commit is contained in:
parent
2bae32e1b9
commit
41a23a1a96
1 changed files with 9 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017, 2018, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018, 2020 Marius Bakke <mbakke@fastmail.com>
|
||||
|
@ -98,7 +98,14 @@ (define-public elfutils
|
|||
(lambda _
|
||||
(substitute* "tests/Makefile.in"
|
||||
(("run-backtrace-native.sh") ""))
|
||||
#t)))))
|
||||
#t))
|
||||
,@(if (target-riscv64?)
|
||||
`((add-after 'unpack 'disable-failing-riscv64-test
|
||||
(lambda _
|
||||
;; dwfl_thread_getframes: No DWARF information found
|
||||
(substitute* "tests/Makefile.in"
|
||||
(("run-backtrace-dwarf.sh") "")))))
|
||||
'()))))
|
||||
|
||||
(native-inputs (list m4))
|
||||
(inputs (list zlib))
|
||||
|
|
Loading…
Reference in a new issue