This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: change to gcc from lcc
- From: Ian Lance Taylor <iant at google dot com>
- To: Anna Sidera <eep6sa1 at ucy dot ac dot cy>
- Cc: gcc at gcc dot gnu dot org
- Date: Fri, 14 Nov 2008 08:07:12 -0800
- Subject: Re: change to gcc from lcc
- References: <f658a702fd3d.491d5c62@ucy.ac.cy>
Anna Sidera <eep6sa1@ucy.ac.cy> writes:
> The following code works in lcc in windows but it does not work in
> gcc in unix. I think it is memory problem. In lcc there is an option
> to use more temporary memory than the default. Is there something
> similar in gcc?
In gcc, no. But if you are using gcc on Windows, you are probably
using the GNU linker. The GNU linker Windowsport supports a --stack
option to set the size of the stack. This is documented in the GNU
linker manual.
Ian