From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: John Proctor Newsgroups: gmane.lisp.guile.bugs Subject: Problem with netcat Date: Sun, 3 Apr 2011 17:23:34 -0400 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=e0cb4e7004b567768804a00a41b4 X-Trace: dough.gmane.org 1301871382 25358 80.91.229.12 (3 Apr 2011 22:56:22 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 3 Apr 2011 22:56:22 +0000 (UTC) To: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Mon Apr 04 00:56:16 2011 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Q6WDP-0005TE-Vq for guile-bugs@m.gmane.org; Mon, 04 Apr 2011 00:56:16 +0200 Original-Received: from localhost ([127.0.0.1]:38668 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q6WDP-0002Sl-GI for guile-bugs@m.gmane.org; Sun, 03 Apr 2011 18:56:15 -0400 Original-Received: from [140.186.70.92] (port=38285 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q6Ulk-00077Y-Uj for bug-guile@gnu.org; Sun, 03 Apr 2011 17:23:37 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q6Ulj-0005GM-O0 for bug-guile@gnu.org; Sun, 03 Apr 2011 17:23:36 -0400 Original-Received: from mail-ey0-f169.google.com ([209.85.215.169]:34120) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q6Ulj-0005GD-IJ for bug-guile@gnu.org; Sun, 03 Apr 2011 17:23:35 -0400 Original-Received: by eyd9 with SMTP id 9so1541961eyd.0 for ; Sun, 03 Apr 2011 14:23:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:date:message-id:subject:from:to :content-type; bh=pIPeShx97NpPY7DZlDHujASBGhPi86GJ5JqutvPm6qM=; b=mPx7ygAzwt5ulmqpbrHxtJ6YrcfN+wNW7CdyofprzpT3ZjD2nnK4A7u+PvfgkpCSza JSnpze38vG9NyaQ4Y3AS0NkDkhXSRUw5qVFN7j0lqO7dNuSVnD6CCACtRK5XkHRfR5oy MFOHwBCOBa4A9sXm/qVVrGNZOzhjci/M2Gn6g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=snle3ivpdIMqtLoKs0Mn6AWTgBKGJ+cGy5h11tQKZL02W+4eIKCKvoj4EEQx6CIyIc ExnhsCo8F9ZcYry5TGk8FbIHx9lDR22SJGhlhoO4LwnzAZk8KKF9A5vu5rtLWce6cdDB +sDlLAmfj6dOv+DKtySP/askY202GYTTHwxTc= Original-Received: by 10.14.126.135 with SMTP id b7mr3152405eei.214.1301865814258; Sun, 03 Apr 2011 14:23:34 -0700 (PDT) Original-Received: by 10.14.45.80 with HTTP; Sun, 3 Apr 2011 14:23:34 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.215.169 X-Mailman-Approved-At: Sun, 03 Apr 2011 18:56:10 -0400 X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:5419 Archived-At: --e0cb4e7004b567768804a00a41b4 Content-Type: text/plain; charset=ISO-8859-1 I posted this on IRC and it seems to not likely be a bug with guile but maybe someone can help. Other than this one issue, guile seems to run fine. I am using version 2.0.0 compiled from sources with: $ export BDW_GC_CFLAGS=-L/usr/lib $ export BDW_GC_LIBS=-lgc $ ./configure --prefix=/custom/dir $ make $ make install If I run: $ guile --listen 9000 the guile interpreter starts normal. I can then go to another shell and run $ nc localhost 9000 and access the running instance. Everything seems to work normal. However, if I take a scheme source file such as foo.ss with nothing more than a single express e.g. (+ 1 1) and try : $ nc localhost 9000 < foo.ss the guile instance dies immediately with no errors or anything. Any ideas on how I can debug what is going on would be appreciated. Thanks, John Proctor --e0cb4e7004b567768804a00a41b4 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable

I posted t= his on IRC and it seems to not likely be a bug with guile but maybe someone= can help. =A0Other than this one issue, guile seems to run fine. =A0I am u= sing version 2.0.0 compiled from sources with:

$ export BDW_GC_CFLAGS=3D-L/usr/lib=A0
$= export BDW_GC_LIBS=3D-lgc
$ ./configure --prefix=3D/custom= /dir
$ make
$ make install

If = I run:

$ guile --listen 9000

=A0the g= uile interpreter starts normal. =A0I can then go to another shell and run= =A0

$ nc localhost 9000

= =A0and access the running instance. =A0Everything seems to work normal.


However, if I take a scheme source file = such as foo.ss with nothing more than a single express e.g. (+ 1 1) and try= :

$ nc localhost 9000 < foo.ss

the guile instance dies immediately with no errors or anything.<= /div>


Any ideas on how I can debug what i= s going on would be appreciated.

Thanks,
John Proctor
--e0cb4e7004b567768804a00a41b4--