From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15837 invoked by alias); 15 Aug 2003 07:21:30 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 15828 invoked by uid 48); 15 Aug 2003 07:21:30 -0000 Date: Fri, 15 Aug 2003 07:21:00 -0000 Message-ID: <20030815072130.15827.qmail@sources.redhat.com> From: "jv244 at cam dot ac dot uk" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20030731140827.11745.tobias.schlueter@web.de> References: <20030731140827.11745.tobias.schlueter@web.de> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug bootstrap/11745] Bootstrap fails when compiling insn-attrtab.c with stage1/xgcc X-Bugzilla-Reason: CC X-SW-Source: 2003-08/txt/msg01685.txt.bz2 List-Id: PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11745 ------- Additional Comments From jv244 at cam dot ac dot uk 2003-08-15 07:21 ------- sounds like the stack size could be the problem. I get the following info in cygwin : ulimit -s 2047 ulimit -s 8000 bash: ulimit: stack size: cannot modify limit: invalid argument from the following mail on the cygwin list: http://sources.redhat.com/ml/cygwin/2003-03/msg01394.html This is the real answer. The system call to which the ulimit shell built-in delegates its work is not implemented in Cygwin. I believe link-time is the only way to override the default stack allotment is during compilation (or linking, as the case may be): E.g. (from a message by Gerrit P. Haase, subject "Re: increase stacksize" sent Wed, 17 Jul 2002 15:54:42 +0200): gcc -Wl,--stack,8388608 -o your.exe your.source.c