From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andy Wingo Newsgroups: gmane.lisp.guile.devel Subject: Re: Guile HEAD on Cygwin-1.7 Date: Sat, 20 Jun 2009 13:10:06 +0200 Message-ID: References: <4A39EDCD.1070609@ludens.elte.hu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1245498511 14891 80.91.229.12 (20 Jun 2009 11:48:31 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 20 Jun 2009 11:48:31 +0000 (UTC) Cc: guile-devel To: szgyg Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat Jun 20 13:48:28 2009 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MHz3c-0007tA-03 for guile-devel@m.gmane.org; Sat, 20 Jun 2009 13:48:28 +0200 Original-Received: from localhost ([127.0.0.1]:45977 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MHz3b-00011J-EY for guile-devel@m.gmane.org; Sat, 20 Jun 2009 07:48:27 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MHz3Y-00010X-EJ for guile-devel@gnu.org; Sat, 20 Jun 2009 07:48:24 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MHz3T-0000yg-Oq for guile-devel@gnu.org; Sat, 20 Jun 2009 07:48:24 -0400 Original-Received: from [199.232.76.173] (port=44953 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MHz3T-0000yc-D5 for guile-devel@gnu.org; Sat, 20 Jun 2009 07:48:19 -0400 Original-Received: from a-sasl-quonix.sasl.smtp.pobox.com ([208.72.237.25]:51419 helo=sasl.smtp.pobox.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MHz3S-0000Mt-WD for guile-devel@gnu.org; Sat, 20 Jun 2009 07:48:19 -0400 Original-Received: from localhost.localdomain (unknown [127.0.0.1]) by a-sasl-quonix.sasl.smtp.pobox.com (Postfix) with ESMTP id B362821144; Sat, 20 Jun 2009 07:48:18 -0400 (EDT) Original-Received: from unquote (unknown [82.123.244.190]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-sasl-quonix.sasl.smtp.pobox.com (Postfix) with ESMTPSA id D0A0221143; Sat, 20 Jun 2009 07:48:13 -0400 (EDT) In-Reply-To: <4A39EDCD.1070609@ludens.elte.hu> (szgyg@ludens.elte.hu's message of "Thu, 18 Jun 2009 09:33:33 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.92 (gnu/linux) X-Pobox-Relay-ID: 3F5A2CD0-5D90-11DE-855A-B5D1A546830D-02397024!a-sasl-quonix.pobox.com X-detected-operating-system: by monty-python.gnu.org: Solaris 10 (beta) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:8732 Archived-At: On Thu 18 Jun 2009 09:33, szgyg writes: > ** wrong path when compiling psyntax-pp.scm > > First time only > > Making all in module > make[2]: Entering directory `/home/szgyg/src/GIT/guile/=build/module' > /home/szgyg/src/GIT/guile/=build/meta/guile --no-autocompile -s > ../../module/ice-9/compile-psyntax.scm \ > ../../module/ice-9/psyntax.scm > ../../module/ice-9/psyntax-pp.scm > GUILE_AUTO_COMPILE=0 ../meta/uninstalled-env guile-tools compile -o > "ice-9/psyntax-pp.go" "ice-9/psyntax-pp.scm" > ERROR: In procedure open-file: > ERROR: No such file or directory: "ice-9/psyntax-pp.scm" > make[2]: *** [ice-9/psyntax-pp.go] Error 1 > > Subsequent makes use the correct path: > > Making all in module > make[2]: Entering directory `/home/szgyg/src/GIT/guile/=build/module' > GUILE_AUTO_COMPILE=0 ../meta/uninstalled-env guile-tools compile -o > "ice-9/psyntax-pp.go" "../../module/ice-9/psyntax-pp.scm" > wrote `ice-9/psyntax-pp.go' I wonder why it's regenerating psyntax-pp.scm. It shouldn't, psyntax.scm should be newer than psyntax-pp.scm. Can you make a fresh checkout and try again? It could have been an accidental change from the copyright updating. > ** readline is required, not optional > > GUILE_AUTO_COMPILE=0 ../meta/uninstalled-env guile-tools compile -o > "ice-9/lineio.go" "../../module/ice-9/lineio.scm" > ERROR: readline is not provided in this Guile installation Yes this is a problem. Guile shouldn't depend on readline at all, not even in Scheme modules that are not loaded by default. We should move this module to guile-readline, IMO, or work out some other solution. > make[1]: Entering directory `/home/szgyg/src/GIT/guile/=build' > make check-TESTS > make[2]: Entering directory `/home/szgyg/src/GIT/guile/=build' > Testing /home/szgyg/src/GIT/guile/=build/meta/guile ... > with GUILE_LOAD_PATH=/home/szgyg/src/GIT/guile/test-suite > ;;; note: autocompilation is enabled, set GUILE_AUTO_COMPILE=0 > ;;; or pass the --no-autocompile argument to disable. > ;;; compiling /home/szgyg/src/GIT/guile/test-suite/lib.scm > ;;; compiled > /home/szgyg/.guile-ccache/1.9//home/szgyg/src/GIT/guile/test-suite/lib.scm.go > ERROR: Stack overflow > Running alist.test > [...] What revision of the git repo was this? > On one occasion I got > > make[1]: Entering directory `/home/szgyg/src/GIT/guile/=build' > make check-TESTS > make[2]: Entering directory `/home/szgyg/src/GIT/guile/=build' > Testing /home/szgyg/src/GIT/guile/=build/meta/guile ... > with GUILE_LOAD_PATH=/home/szgyg/src/GIT/guile/test-suite > /bin/sh: line 5: 3944 Segmentation fault (core dumped) ${dir}$tst > FAIL: check-guile To me that looks like a segfault in your shell. Thanks for the report, Andy -- http://wingolog.org/