vote up 3 vote down star

I have large Boost/Spirit metaprogram that is blowing gcc's stack when I try to compile it.

How can I increase gcc's stack size, so I can compile this program?

Note: There's no infinite recursion going on, but there is enough incidental recursion to exhaust gcc's stack.

flag

I'm curious - what are you working on? Having your metaprograms blow the stack on the compiler is quite a feat. – Michael Kohne Jul 21 at 1:28
I'm working on a DSL for real-time event analysis in a distributed rules engine. – Jeff Leonard Jul 21 at 3:55

2 Answers

vote up 6 vote down check

On Linux, you can expand the stack size in /etc/security/limits.conf.

You can check your current stack size by using

$ ulimit -s
8192

Then expand the stack to be double than that:

youruser    soft    stack    16384

And then relog.

This will increase stack size for all executable you're running, not just GCC's.

link|flag
2  
If it's a soft-limit, it can be increased without re-logging in by entering ulimit -s <limit>. This only applies for the current shell of course. – bdonlan Jul 21 at 1:17
vote up 0 vote down

The stack size can be configured during linking. You should look at details regarding the linker scripts. That will only change the stack size for your single programme.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.