guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: dovecot: Fix backtrace test on aarch64.


From: guix-commits
Subject: branch master updated: gnu: dovecot: Fix backtrace test on aarch64.
Date: Thu, 03 Mar 2022 18:07:10 -0500

This is an automated email from the git hooks/post-receive script.

planglois pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 74130e73c0 gnu: dovecot: Fix backtrace test on aarch64.
74130e73c0 is described below

commit 74130e73c019d7f2bc0700eca04d797d2645ffa4
Author: Pierre Langlois <pierre.langlois@gmx.com>
AuthorDate: Thu Feb 24 22:09:45 2022 +0000

    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 fb24546af6..b0b9ae9f76 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -1895,6 +1895,10 @@ facilities for checking incoming mail.")
                            "--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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]