Anna Sidera <[EMAIL PROTECTED]> 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