From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.user Subject: Re: guile 2.0.9 build on mingw Date: Mon, 17 Jun 2013 11:45:51 -0400 Message-ID: <87obb4eo5s.fsf@tines.lan> References: <83sj1hv2ml.fsf@gnu.org> <874ndx9y7h.fsf@pobox.com> <83ip2bt4qk.fsf@gnu.org> <8761xqhyyt.fsf@gnu.org> <83li6mt18y.fsf@gnu.org> <83wqq3mcq9.fsf@gnu.org> <87k3m3kor5.fsf@gnu.org> <83ehcalysu.fsf@gnu.org> <87sj0pvl4a.fsf@tines.lan> <837gi1n3v5.fsf@gnu.org> <87k3m1vg8b.fsf@tines.lan> <83txl4lhby.fsf@gnu.org> <8361xjky0f.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1371483991 6923 80.91.229.3 (17 Jun 2013 15:46:31 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 17 Jun 2013 15:46:31 +0000 (UTC) Cc: ludo@gnu.org, guile-user@gnu.org To: Eli Zaretskii Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Mon Jun 17 17:46:31 2013 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 1UobdV-00062X-BE for guile-user@m.gmane.org; Mon, 17 Jun 2013 17:46:29 +0200 Original-Received: from localhost ([::1]:40384 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UobdV-0005zT-16 for guile-user@m.gmane.org; Mon, 17 Jun 2013 11:46:29 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:43101) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UobdJ-0005u6-JQ for guile-user@gnu.org; Mon, 17 Jun 2013 11:46:22 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UobdI-0005WI-3X for guile-user@gnu.org; Mon, 17 Jun 2013 11:46:17 -0400 Original-Received: from world.peace.net ([96.39.62.75]:33828) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UobdH-0005Sc-U9; Mon, 17 Jun 2013 11:46:15 -0400 Original-Received: from 209-6-92-20.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.92.20] helo=tines.lan) by world.peace.net with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1Uobd1-0007pF-5U; Mon, 17 Jun 2013 11:45:59 -0400 In-Reply-To: <8361xjky0f.fsf@gnu.org> (Eli Zaretskii's message of "Wed, 12 Jun 2013 21:02:56 +0300") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 96.39.62.75 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:10458 Archived-At: Hi Eli, Eli Zaretskii writes: > The bug report at http://bugs.gnu.org/14171 says that when Guile is > compiled with enable-posix, it "can't start the REPL". Can someone > please show me a simple way of trying that? Just run Guile in such a way that would lead to an interactive Guile prompt, e.g. by running without any command-line arguments. Two people reported that when built with --enable-posix, Guile would work when run in a non-interactive way (e.g. using -c or running a script), but would hang when run interactively. As described in , the problem seems to be in 'call-with-sigint' defined in ice-9/top-repl.scm. Note that 'call-with-sigint' only installs a signal handler if POSIX support is enabled, and otherwise is a no-op. --disable-posix avoided the hang and allowed the REPL to be reached. > I'd like to see if my > build, which didn't use --disable-posix, has any problems in that > area, and if so try to debug them. Thanks for your work on this! Mark