diff options
author | Marius Bakke <[email protected]> | 2022-10-16 00:10:07 +0200 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2022-10-16 00:10:07 +0200 |
commit | c567a82a6975e70c8207a4aeed55a72b5121213c (patch) | |
tree | 8a6dfe8a78726933e4a1581a2c6ba4a84d59411f /gnu/packages/libunwind.scm | |
parent | 3a84b4ec4cec1d122cb454da9d4f6a747a51e49a (diff) | |
parent | 322917aeb8e672c21378fd371a5cff4a9f0c2520 (diff) |
Merge branch 'staging'
Diffstat (limited to 'gnu/packages/libunwind.scm')
-rw-r--r-- | gnu/packages/libunwind.scm | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/gnu/packages/libunwind.scm b/gnu/packages/libunwind.scm index 03412edd25..ccbe2ec751 100644 --- a/gnu/packages/libunwind.scm +++ b/gnu/packages/libunwind.scm @@ -2,6 +2,8 @@ ;;; Copyright © 2013, 2014 Ludovic Courtès <[email protected]> ;;; Copyright © 2015 Mark H Weaver <[email protected]> ;;; Copyright © 2019 Tobias Geerinckx-Rice <[email protected]> +;;; Copyright © 2022 Efraim Flashner <[email protected]> +;;; Copyright © 2022 Marius Bakke <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -20,28 +22,32 @@ (define-module (gnu packages libunwind) #:use-module (guix packages) - #:use-module (gnu packages) #:use-module (guix download) + #:use-module (guix utils) + #:use-module (gnu packages) #:use-module (guix build-system gnu) #:use-module (guix licenses)) (define-public libunwind (package (name "libunwind") - (version "1.5.0") + (version "1.6.2") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/libunwind/libunwind-" version ".tar.gz")) (sha256 (base32 - "05qhzcg1xag3l5m3c805np6k342gc0f3g087b7g16jidv59pccwh")))) + "0xj9g6a9q7v7zz6lymf3f6011synibgawi4wi384bywid5kfqsja")))) (build-system gnu-build-system) (arguments - ;; FIXME: As of glibc 2.25, we get 1 out of 34 test failures (2 are - ;; expected to fail). - ;; Report them upstream. - '(#:tests? #f)) + `(;; Two tests are failing with newer toolchains: + ;; https://github.com/libunwind/libunwind/issues/363 + #:make-flags + '("XFAIL_TESTS=run-coredump-unwind run-coredump-unwind-mdi") + ;; A different collection of tests fails for each architecture. + #:tests? ,(and (not (%current-target-system)) + (target-x86-64?)))) (home-page "https://www.nongnu.org/libunwind") (synopsis "Determining the call chain of a program") (description |