-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stack size causes catch platform to throw exception #547
Comments
You've under-/overflown the stack, increase the stack size in your linker arguments. |
But I have a question than; why I am not having this expection while I don't use "catch". |
Because it stack-allocates some stuff as well? |
I set my max stack size like LIB += -Wl,--stack,4194304 but no matter what I do I am still getting the exception. This is most probably me who is not making the correct configuration. But I want to tell you anyways. I am on windows-mingw and configuring mingw with qmake. |
I didn't see this the first time around but I'm pretty sure this is just a case of "the straw that broke the camel's back". |
I have a class like:
If I write a test like:
That works ,
But if I change
I am getting a segmentation fault.
And stack is like :
The text was updated successfully, but these errors were encountered: