This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Cannot allocate 92625564 bytes after allocating 198356992 bytes
- From: mike stump <mrs at windriver dot com>
- To: dimi at flashmail dot com, gcc-help at gcc dot gnu dot org, gcc at gcc dot gnu dot org
- Date: Thu, 7 Feb 2002 11:53:56 -0800 (PST)
- Subject: Re: Cannot allocate 92625564 bytes after allocating 198356992 bytes
> From: "Dimitri Frederickx" <dimi@flashmail.com>
> To: <gcc-help@gcc.gnu.org>, <gcc@gcc.gnu.org>
> Date: Thu, 7 Feb 2002 02:26:43 +0100
> Cc /home/Administrator/open-wonka/build-x86-winnt/wonka/bin/unicode.o
> cc1.exe: Cannot allocate 92625564 bytes after allocating 198356992 bytes
> What does this message mean? Why do I get it? Why can't I compile my
> source? How do I solve it?
Compile with -O0, or compile on a bigger/better/newer machine.
It used 198,356,992 bytes of memory, or 198 megabytes. It wanted to
use at least 92,625,564 more bytes, or 92 megabytes. If you compile
on a machine with 512 megabytes of memory (RAM), it might work.