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.devel Subject: Re: autocompilation support in master Date: Mon, 8 Jun 2009 20:52:26 -0400 Message-ID: <20090609005226.GA3468@fibril.netris.org> References: <87hbyujpof.fsf@arudy.ossau.uklinux.net> <87vdn6gvgf.fsf@arudy.ossau.uklinux.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1244521646 29203 80.91.229.12 (9 Jun 2009 04:27:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 9 Jun 2009 04:27:26 +0000 (UTC) Cc: Andy Wingo , guile-devel To: Neil Jerram Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Tue Jun 09 06:27:20 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 1MDsvd-0004Cr-KJ for guile-devel@m.gmane.org; Tue, 09 Jun 2009 06:27:17 +0200 Original-Received: from localhost ([127.0.0.1]:38472 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MDsvd-0005W7-0V for guile-devel@m.gmane.org; Tue, 09 Jun 2009 00:27:17 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MDpZt-00034q-5U for guile-devel@gnu.org; Mon, 08 Jun 2009 20:52:37 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MDpZo-00034e-Ub for guile-devel@gnu.org; Mon, 08 Jun 2009 20:52:36 -0400 Original-Received: from [199.232.76.173] (port=57186 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MDpZo-00034b-Qz for guile-devel@gnu.org; Mon, 08 Jun 2009 20:52:32 -0400 Original-Received: from world.peace.net ([204.107.200.8]:33167) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MDpZo-0005pR-Go for guile-devel@gnu.org; Mon, 08 Jun 2009 20:52:32 -0400 Original-Received: from localhost ([127.0.0.1] helo=fibril.netris.org ident=hope3) by world.peace.net with esmtp (Exim 4.69) (envelope-from ) id 1MDpZm-0007MU-1V; Mon, 08 Jun 2009 20:52:30 -0400 Content-Disposition: inline In-Reply-To: <87vdn6gvgf.fsf@arudy.ossau.uklinux.net> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) X-Mailman-Approved-At: Tue, 09 Jun 2009 00:25:45 -0400 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:8649 Archived-At: On Tue, Jun 09, 2009 at 12:24:48AM +0100, Neil Jerram wrote: > > GUILE_AUTO_COMPILE=0 ../meta/uninstalled-env guile-tools compile -o "language/ecmascript/spec.go" "language/ecmascript/spec.scm" > > ERROR: Stack overflow > > This is still happening for me after pulling the latest master today. I have the same problem on Debian Lenny/x86, and am able to work around it by increasing the stack size resource limit. On my system, "ulimit -s 16384" (within bash) before running "make" does the trick. Unfortunately, this is not a portable solution. Mark