This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/49756] g++ ICE
- From: "jakub at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Mon, 18 Jul 2011 14:24:59 +0000
- Subject: [Bug c++/49756] g++ ICE
- Auto-submitted: auto-generated
- References: <bug-49756-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49756
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jakub at gcc dot gnu.org
--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-07-18 14:24:56 UTC ---
More probably the gcc/g++ driver already, because inside of tbe main of a
program it might be too late to increase the stack limits - if something is
already mmapped right below the old smaller stack the increase won't be
effective.
I guess increasing the RLIMIT_STACK in the driver to MIN (hard_limit, MAX
(soft_limit, 30MB)) wouldn't be a bad idea.