From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Ready for Guile 2.2! Date: Wed, 15 Mar 2017 21:41:27 +0100 Message-ID: <87lgs65l3c.fsf@gnu.org> References: <87bmt28qnm.fsf@gnu.org> 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]:35477) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1coFji-0002i1-Pi for guix-devel@gnu.org; Wed, 15 Mar 2017 16:41:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1coFje-0000Ne-PV for guix-devel@gnu.org; Wed, 15 Mar 2017 16:41:34 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:59240) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1coFje-0000NS-Kh for guix-devel@gnu.org; Wed, 15 Mar 2017 16:41:30 -0400 Received: from reverse-83.fdn.fr ([80.67.176.83]:52850 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1coFjd-0000zJ-Ss for guix-devel@gnu.org; Wed, 15 Mar 2017 16:41:30 -0400 In-Reply-To: <87bmt28qnm.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Wed, 15 Mar 2017 17:13:01 +0100") 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: guix-devel ludo@gnu.org (Ludovic Court=C3=A8s) skribis: > Guile 2.2 comes with a new compiler and a new virtual machine. As a > result, one of the main user-visible changes is that things are faster. An unscientific illustration of this point: --8<---------------cut here---------------start------------->8--- scheme@(guile-user)> ,use(guix scripts build) scheme@(guile-user)> ,time (guix-build "libreoffice" "certbot" "xmonad" "-n= " "--no-substitutes" "--no-build-hook") The following derivations would be built: [...] ;; 2.724686s real time, 3.117062s run time. 0.880827s spent in GC. scheme@(guile-user)> (version) $1 =3D "2.0.13" --8<---------------cut here---------------end--------------->8--- Compared to: --8<---------------cut here---------------start------------->8--- scheme@(guile-user)> ,time (guix-build "libreoffice" "certbot" "xmonad" "-n= " "--no-substitutes" "--no-build-hook") [...] ;; 2.224821s real time, 2.347463s run time. 0.374545s spent in GC. --8<---------------cut here---------------end--------------->8--- Roughly an 18% speedup here. Ludo=E2=80=99.