efraim pushed a commit to branch wip-riscv
in repository guix.

commit ed2bddff0830fe6e2f4e405802e7cf875632ec15
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Aug 1 10:55:04 2021 +0300

    gnu: elfutils: Fix building on riscv64-linux.
    
    * gnu/packages/elf.scm (elfutils)[arguments]: On riscv64-linux add a
    phase to skip failing test.
---
 gnu/packages/elf.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/elf.scm b/gnu/packages/elf.scm
index 2bc1d00..cfc623d 100644
--- a/gnu/packages/elf.scm
+++ b/gnu/packages/elf.scm
@@ -2,7 +2,7 @@
 ;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <[email protected]>
 ;;; Copyright © 2014, 2015 Mark H Weaver <[email protected]>
 ;;; Copyright © 2015 Andreas Enge <[email protected]>
-;;; Copyright © 2017, 2018, 2019, 2020 Efraim Flashner <[email protected]>
+;;; Copyright © 2017, 2018, 2019, 2020, 2021 Efraim Flashner 
<[email protected]>
 ;;; Copyright © 2017 Leo Famulari <[email protected]>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <[email protected]>
 ;;; Copyright © 2018, 2020 Marius Bakke <[email protected]>
@@ -98,7 +98,14 @@
            (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 `(("m4" ,m4)))
     (inputs `(("zlib" ,zlib)))

Reply via email to