From 4a282547821196ba6d5ec494334144b528c6c9cd Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Thu, 24 Feb 2022 22:09:45 +0000 Subject: [PATCH] gnu: dovecot: Fix backtrace test on aarch64. * gnu/packages/mail.scm (dovecot)[arguments]: Add LDFLAGS=-rdynamic to make-flags. --- gnu/packages/mail.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 7a146a8603..8dce9d55b5 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1900,6 +1900,10 @@ (define-public dovecot "--localstatedir=/var" "--with-sqlite" ; not auto-detected "--with-lucene") ; not auto-detected + ;; The -rdynamic linker flag is needed for the backtrace() function to + ;; have symbol names rather than just addresses. Dovecot's tests rely + ;; on this, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=962630. + #:make-flags (list "LDFLAGS=-rdynamic") #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-file-names -- 2.34.0