From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: Status update+patches:Re: I managed to build guix natively on Debian GNU/Hurd , what's next? Date: Wed, 04 Sep 2019 09:52:01 +0200 Message-ID: <87v9u8fqhq.fsf@elephly.net> References: <87k1aufiie.fsf@elephly.net> <18bb81c74e24323fb974bc5126a1b94094b3be71.camel@gmail.com> <87ftlifgcm.fsf@elephly.net> <32d67ecf3f8e43cd8d4607287d4c4b57380f47ef.camel@gmail.com> <87ef11fs9i.fsf@elephly.net> <30bdaa745f0a41617e0e81fc6bc63b1228dab729.camel@gmail.com> <60498ff6153c81ffa586c9088e35f2e403270827.camel@gmail.com> <45800d03ca1fab9f80bae932a9354f60f6c12a2d.camel@gmail.com> <5f5d2b063290517ff9619cf59398b700998b5a2b.camel@gmail.com> <875zm9h6yx.fsf@elephly.net> <62954aca574f56f1cb980b147fb4f3d8a492632c.camel@gmail.com> <22f1e536522d303a01dbdaac3dcd54360f09730a.camel@gmail.com> <87y2z5f4vs.fsf@elephly.net> <87woepf39s.fsf@elephly.net> <3770127fed5eb6bf39eba4fb76a05c180c1b093e.camel@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:470:142:3::10]:55408) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i5Q5K-0001ZZ-OF for guix-devel@gnu.org; Wed, 04 Sep 2019 03:52:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i5Q5J-0001x1-Lr for guix-devel@gnu.org; Wed, 04 Sep 2019 03:52:10 -0400 Received: from sender4-of-o52.zoho.com ([136.143.188.52]:21205) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i5Q5J-0001wW-9i for guix-devel@gnu.org; Wed, 04 Sep 2019 03:52:09 -0400 In-reply-to: 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: svante.signell@gmail.com Cc: guix-devel Svante Signell writes: > On Wed, 2019-09-04 at 06:31 +0200, Svante Signell wrote: >>=20 >> unpacking bootstrap Guile to '/gnu/store/ncp3yhr6c38kqvgb8c967vnhly59yf1= m- >> guile-bootstrap-2.0'... > > This stuff comes from gnu/packages/bootstrap.scm > #!~a > export GUILE_SYSTEM_PATH=3D~a/share/guile/2.0 =E2=80=A6 Didn=E2=80=99t you use Guile 2.2 for the bootstrap? This generated script assumes that Guile 2.0 is used. > BTW: What is ~a, something guile-specific? =E2=80=9C~a=E2=80=9D is a format string placeholder. (format #f "hello, ~a! I=E2=80=98m ~a years old." "world" 12) =3D> "hello, world! I=E2=80=98m 12 years old." --=20 Ricardo