From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:57674) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jP7L2-0007ax-22 for guix-patches@gnu.org; Thu, 16 Apr 2020 12:26:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jP7L0-000143-4r for guix-patches@gnu.org; Thu, 16 Apr 2020 12:26:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:55902) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jP7L0-00013x-1d for guix-patches@gnu.org; Thu, 16 Apr 2020 12:26:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jP7Kz-0004Nn-Ur for guix-patches@gnu.org; Thu, 16 Apr 2020 12:26:01 -0400 Subject: [bug#40556] [PATCH] gnu: dovecot: Add libunwind input. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87ftdahvut.fsf@gmx.com> <875ze6ngmg.fsf@nckx> <87eesuhsl2.fsf@gmx.com> Date: Thu, 16 Apr 2020 18:24:56 +0200 In-Reply-To: <87eesuhsl2.fsf@gmx.com> (Pierre Langlois's message of "Sat, 11 Apr 2020 18:53:29 +0200") Message-ID: <877dyfgzzb.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Pierre Langlois Cc: Tobias Geerinckx-Rice , 40556@debbugs.gnu.org Hi, Pierre Langlois 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=E2=80=99t quite correct because =E2=80=98%current-target-system=E2= =80=99 returns a triplet, like =E2=80=9Carm-linux-gnueabihf=E2=80=9D. Use =E2=80=98target-arm?=E2=80=99 instead. TIA! Ludo=E2=80=99.