views:

239

answers:

1

Is it possible to set the stack limit in DevC++? Basically the same as "ulimit -s" would do on linux.

+1  A: 

Try giving this option to ld (the linker):

--stack reserve
--stack reserve,commit
Specify the number of bytes of memory to reserve (and optionally commit) to be used as stack for this program. The default is 2Mb reserved, 4K committed. [This option is specific to the i386 PE targeted port of the linker]

http://sourceware.org/binutils/docs/ld/Options.html#Options

Bastien Léonard