From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] gnu: cross-gcc-arguments: Add Hurd-core-headers lib directory to the "CROSS_LIBRARY_PATH". Date: Sun, 12 Jun 2016 18:42:13 +0200 Message-ID: <87r3c2l5p6.fsf@gnu.org> References: <5a5a117f-6e70-2aef-ec02-d9702f8b7208@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58944) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bC8Sr-0007jV-Bw for guix-devel@gnu.org; Sun, 12 Jun 2016 12:42:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bC8Sn-0000Rd-4Z for guix-devel@gnu.org; Sun, 12 Jun 2016 12:42:20 -0400 In-Reply-To: <5a5a117f-6e70-2aef-ec02-d9702f8b7208@gmail.com> (Manolis Ragkousis's message of "Wed, 8 Jun 2016 17:55:00 +0300") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Manolis Ragkousis Cc: guix-devel@gnu.org Hi! Manolis Ragkousis skribis: > From 77b12cc2aa1a79a2f15b96d80a14d76e3501aeb1 Mon Sep 17 00:00:00 2001 > From: Manolis Ragkousis > Date: Wed, 8 Jun 2016 17:46:19 +0300 > Subject: [PATCH] gnu: cross-gcc-arguments: Add Hurd-core-headers lib dire= ctory > to the "CROSS_LIBRARY_PATH". Subject too long; what about: =E2=80=9Cgnu: cross-gcc: Allow Hurd libraries= to be found.=E2=80=9D? > * gnu/packages/cross-base.scm (cross-gcc-arguments)[arguments]: Add Hurd-= core-headers lib > directory to the "CROSS_LIBRARY_PATH". Rather =E2=80=9CAdd =E2=80=98KERNEL/lib=E2=80=99 to =E2=80=98CROSS_LIBRARY_= PATH=E2=80=99.=E2=80=9D > - (string-append libc "/lib")) > + (string-append libc "/lib" > + ;; We need this for GNU/Hurd. > + ":" kernel "/lib")) Maybe write it as: (string-append libc "/lib:" kernel "/lib") ;for Hurd=E2=80=99s libihash OK with these changes. What=E2=80=99s confusing is that the hurd-core-headers package actually con= tains libihash.a (and libstore.a?) in addition to headers, right? Thanks! Ludo=E2=80=99.