From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Newsgroups: gmane.lisp.guile.user Subject: Re: guile-2.0.11 installation on system with 2.0.5 Date: Sun, 14 Sep 2014 16:33:20 +0200 Message-ID: <87ppey9sr3.fsf@gnu.org> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1410705232 31798 80.91.229.3 (14 Sep 2014 14:33:52 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 14 Sep 2014 14:33:52 +0000 (UTC) Cc: guile-user@gnu.org To: Federico Beffa Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sun Sep 14 16:33:45 2014 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XTAs4-00084a-Ap for guile-user@m.gmane.org; Sun, 14 Sep 2014 16:33:44 +0200 Original-Received: from localhost ([::1]:54880 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XTAs3-0006Sz-TC for guile-user@m.gmane.org; Sun, 14 Sep 2014 10:33:43 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45151) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XTArn-0006KU-5x for guile-user@gnu.org; Sun, 14 Sep 2014 10:33:32 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XTArh-0005G7-6h for guile-user@gnu.org; Sun, 14 Sep 2014 10:33:27 -0400 Original-Received: from hera.aquilenet.fr ([2a01:474::1]:42196) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XTArh-0005Fz-0h for guile-user@gnu.org; Sun, 14 Sep 2014 10:33:21 -0400 Original-Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 47BB03652; Sun, 14 Sep 2014 16:33:20 +0200 (CEST) Original-Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sIfV8jiciyTM; Sun, 14 Sep 2014 16:33:20 +0200 (CEST) Original-Received: from pluto (reverse-83.fdn.fr [80.67.176.83]) by hera.aquilenet.fr (Postfix) with ESMTPSA id E631B35A0; Sun, 14 Sep 2014 16:33:19 +0200 (CEST) X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 28 Fructidor an 222 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0xEA52ECF4 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 83C4 F8E5 10A3 3B4C 5BEA D15D 77DD 95E2 EA52 ECF4 X-OS: x86_64-unknown-linux-gnu In-Reply-To: (Federico Beffa's message of "Sat, 13 Sep 2014 14:52:48 +0200") User-Agent: Gnus/5.130011 (Ma Gnus v0.11) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a01:474::1 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:11499 Archived-At: Federico Beffa skribis: > Everything appeared to be fine. However, with my surprise, when I > started the newly installed guile with > > $ /usr/local/bin/guile > > I was greeted with > > GNU Guile 2.0.5-deb+1-3 > Copyright (C) 1995-2012 Free Software Foundation, Inc. > ... It may be that, while /usr/local/bin/guile is indeed from the new version, it ends up loading .scm and .go files from the old version. You could check that by running: strace -o log /usr/local/bin/guile --version and grepping for .scm and .go files in =E2=80=98log=E2=80=99. That could happen, for instance, if there=E2=80=99s a GUILE_LOAD_PATH or GUILE_LOAD_COMPILED_PATH environment variable pointing to /usr/share/guile/... > Am I doing something wrong? Is it possible to have two guile versions > on the same system? Yes. Thanks, Ludo=E2=80=99.