From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:52004) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hQwGF-0003lD-2E for guix-patches@gnu.org; Wed, 15 May 2019 11:56:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hQwGD-0003ex-2u for guix-patches@gnu.org; Wed, 15 May 2019 11:56:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39683) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hQwGA-0003aD-VA for guix-patches@gnu.org; Wed, 15 May 2019 11:56:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hQwGA-0002HX-St for guix-patches@gnu.org; Wed, 15 May 2019 11:56:02 -0400 Subject: [bug#35753] [PATCH] gnu: mes: Prepare for non-x86 architectures. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:51592) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hQwFZ-0002wS-BH for guix-patches@gnu.org; Wed, 15 May 2019 11:55:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hQw2j-0005ea-23 for guix-patches@gnu.org; Wed, 15 May 2019 11:42:09 -0400 Received: from dd26836.kasserver.com ([85.13.145.193]:45754) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hQw2h-0005UV-Bw for guix-patches@gnu.org; Wed, 15 May 2019 11:42:08 -0400 From: Danny Milosavljevic Date: Wed, 15 May 2019 17:42:01 +0200 Message-Id: <20190515154201.31101-1-dannym@scratchpost.org> MIME-Version: 1.0 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: 35753@debbugs.gnu.org * gnu/packages/mes.scm (mes)[native-inputs]: Prepare for non-x86 architectures. --- gnu/packages/mes.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm index c45e267875..5c6b64150b 100644 --- a/gnu/packages/mes.scm +++ b/gnu/packages/mes.scm @@ -78,13 +78,16 @@ extensive examples, including parsers for the Javascr= ipt and C99 languages.") ("nyacc" ,nyacc))) (native-inputs `(("guile" ,guile-2.2) - ,@(if (not (string-prefix? "i686-linux" (or (%current-target-sy= stem) - (%current-system)))= ) + ,@(let ((target-system (or (%current-target-system) + (%current-system)))) + (cond + ((string-prefix? "x86_64-linux" target-system) ;; Use cross-compiler rather than #:system "i686-linux" t= o get ;; MesCC 64 bit .go files installed ready for use with Gu= ile. `(("i686-linux-binutils" ,(cross-binutils triplet)) - ("i686-linux-gcc" ,(cross-gcc triplet))) - '()) + ("i686-linux-gcc" ,(cross-gcc triplet)))) + (else + '()))) ("graphviz" ,graphviz) ("help2man" ,help2man) ("perl" ,perl) ; build-aux/gitlog-to-changelog