[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#40556] [PATCH] gnu: dovecot: Add libunwind input.
From: |
Ludovic Courtès |
Subject: |
[bug#40556] [PATCH] gnu: dovecot: Add libunwind input. |
Date: |
Thu, 16 Apr 2020 18:24:56 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) |
Hi,
Pierre Langlois <address@hidden> skribis:
> + ;; FIXME: The 'test-backtrace' tests fail on arm when using glibc's
> + ;; backtrace_symbol() function so fallback to using libunwind.
> + ,@(match (or (%current-target-system) (%current-system))
> + ((or "aarch64-linux" "armhf-linux")
> + `(("libunwind" ,libunwind)))
> + (_ '()))
This isn’t quite correct because ‘%current-target-system’ returns a
triplet, like “arm-linux-gnueabihf”.
Use ‘target-arm?’ instead.
TIA!
Ludo’.