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.devel Subject: Re: Guile build failure Date: Mon, 21 Jan 2013 11:47:37 +0100 Message-ID: <87obgidd86.fsf@gnu.org> References: <20120709140217.3a5e271b@rascar> <87bojo6nc6.fsf@gnu.org> <20120710125040.37e9b946@rascar> <871ukipr8i.fsf@gnu.org> <20120719105939.44708c6a@rascar> <87629j68nv.fsf@gnu.org> <20120719134534.2d07fc8b@rascar> <87zk6t5pr8.fsf@gnu.org> <20120728125540.275b0334@rascar> <874nocw4lr.fsf@gnu.org> <87622q999d.fsf@pobox.com> 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 1358765265 17278 80.91.229.3 (21 Jan 2013 10:47:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 21 Jan 2013 10:47:45 +0000 (UTC) Cc: guile-devel@gnu.org, David Pirotte To: Andy Wingo Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Jan 21 11:48:04 2013 Return-path: Envelope-to: guile-devel@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 1TxEv3-0004dE-Jh for guile-devel@m.gmane.org; Mon, 21 Jan 2013 11:48:01 +0100 Original-Received: from localhost ([::1]:46341 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxEum-0001uK-Mb for guile-devel@m.gmane.org; Mon, 21 Jan 2013 05:47:44 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:50186) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxEuj-0001tx-0q for guile-devel@gnu.org; Mon, 21 Jan 2013 05:47:42 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TxEuh-0003fS-GE for guile-devel@gnu.org; Mon, 21 Jan 2013 05:47:40 -0500 Original-Received: from mail1-relais-roc.national.inria.fr ([192.134.164.82]:46523) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxEuh-0003fC-9l for guile-devel@gnu.org; Mon, 21 Jan 2013 05:47:39 -0500 X-IronPort-AV: E=Sophos;i="4.84,505,1355094000"; d="scan'208";a="190891732" Original-Received: from unknown (HELO pluto) ([193.50.110.87]) by mail1-relais-roc.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-SHA; 21 Jan 2013 11:47:38 +0100 X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 2 =?utf-8?Q?Pluvi=C3=B4se?= an 221 de la =?utf-8?Q?R?= =?utf-8?Q?=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: <87622q999d.fsf@pobox.com> (Andy Wingo's message of "Mon, 21 Jan 2013 10:26:54 +0100") User-Agent: Gnus/5.130005 (Ma Gnus v0.5) Emacs/24.2 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 192.134.164.82 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:15484 Archived-At: Hi, Andy Wingo skribis: > On Thu 09 Aug 2012 15:57, ludo@gnu.org (Ludovic Court=C3=A8s) writes: > >> Hi David, and sorry for the delay, >> >> David Pirotte skribis: >> >>> ;;; (remaining "/mnt/galia/linux/64/local/src/guile/guile-2.0.6/load-te= st.dir" ("." ".." ".nfs00000000121e01b200000019" ".nfs00000000121e01b300000= 01a")) >> >> Aaah, those hidden files are the culprit. > > From http://www.redhat.com/archives/rhelv5-list/2008-May/msg00156.html: > > .nfs000* are the ghosts of departed files. For example, if you have a > file handle for /home/user/foo open on an nfs client and the file gets > removed somewhere else, then the .nfs* file shows up/is used by the > original process until it closes the file handle. > > Use "fuser .nfs*" to see which process is using it. > > Could Guile be keeping a handle open to these files? =E2=80=98load.test=E2=80=99 uses =E2=80=98compile-file=E2=80=99, and it see= ms that =E2=80=98compile-file=E2=80=99 does an =E2=80=98open-input-file=E2=80=99 with no corresponding =E2=80=98close-p= ort=E2=80=99. That may be the problem. Ludo=E2=80=99.