This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: Help tracing an internal compiler error
- From: Warren_Baird at cimmetry dot com
- To: Eric Botcazou <ebotcazou at libertysurf dot fr>
- Cc: gcc-bugs at gcc dot gnu dot org
- Date: Thu, 11 Sep 2003 10:50:36 -0400
- Subject: Re: Help tracing an internal compiler error
> Try maybe to play with the settings of the GC (see ggc-min-expand and
> ggc-min-heapsize in the Optimize options).
Well - if I up the min-expand and min-heapsize values by a factor of ten,
everything is good... I just did:
g++ -c -g -O2 --param ggc-min-expand=1000 --param ggc-min-heapsize=1310720 -v
tmp1.ii
and it compiled fine... However, it feels to me like this is really just a
band-aid --- we haven't really fixed the problem, we've just hidden it for the
moment...
Warren