Mail Archives: djgpp/1999/09/09/09:21:35
On Wed, 8 Sep 1999, Andy wrote:
> Um, Well I clocked my cpu back to what it should be (400Mhz) , and allegro
> complied with no errors. Even though windows was not to fussy with my
> overclocked processor it looks like djgpp did not like it at all.
GCC is a very memory-intensive compiler, it moves large buffers around
a lot. It also uses lots of memory. So it is very sensitive to small
problems with memory accesses, and it uses addresses that Windows
might never touch. Overclocking might create random problems with
memory chips and/or caches that cannot keep up with the processor, and
if that happens, GCC will surely crash.
Note that section 6.6 of the FAQ mentions such problems.
- Raw text -