From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Martin v. Loewis" To: bordner_aj@yahoo.com Cc: bug-gcc@gnu.org Subject: Re: bug report Date: Thu, 13 Apr 2000 01:00:00 -0000 Message-id: <200004130751.JAA02516@loewis.home.cs.tu-berlin.de> References: <20000413000824.1685.qmail@web308.mail.yahoo.com> X-SW-Source: 2000-04/msg00369.html List-Id: > I wanted to attach a copy of the CPP output but even > the gzipped version was 140K and so rejected by your > mailer daemon. If there is another way to send this > file please let me know. Thanks for your bug report. There is a good chance that the bug has been fixed in gcc-2.95.2, so I recommend to upgrade. Regards, Martin >>From NeilB@earthling.net Thu Apr 13 03:27:00 2000 From: Neil Booth To: Iggy Veresov Cc: gcc-bugs@gcc.gnu.org Subject: Re: Dynamic stack allocation bug, or am I doing something wrong? Date: Thu, 13 Apr 2000 03:27:00 -0000 Message-id: References: <38F4BFAD.6D2383FF@homepage.ru> <200004122138.XAA02787@loewis.home.cs.tu-berlin.de> <38F4FDF2.91ED519F@homepage.ru> X-SW-Source: 2000-04/msg00370.html Content-length: 708 Iggy Veresov wrote:- > # ulimit -a > core file size (blocks) unlimited > data seg size (kbytes) unlimited > file size (blocks) unlimited > max memory size (kbytes) unlimited > stack size (kbytes) unlimited > cpu time (seconds) unlimited > max user processes 256 > pipe size (512 bytes) 8 > open files 1024 > virtual memory (kbytes) 4194302 > > Btw, such effect occurs if the size of the array is bigger than 2M. > It looks like some kind of limitation but I just can't pin point where > it is.. Well, it looks to me like you have unlimited stack, but only 4M of virtual memory, of which stack is a part. So you do have an upper limit on stack space. Neil.