Mail Archives: djgpp/1998/06/28/08:24:09
On 27 Jun 1998, Joshua Hab wrote:
> I have a program that when compiled using
>
> gcc -c cube.c -o cube.o
>
> crashes on two different computers some of the time. I have no problems
> compiling anything else.
The usual reason for this is an insufficient stack available to the
compiler. The crash traceback shows which program (cc1.exe in your case)
crashes; you should stubedit that program and enlarge its stack size.
The DJGPP FAQ list has the details in section 6.4.
> [snip limits, etc.]
You should NEVER remove anything from the crash traceback you post. It
includes crucial information about the cause(s) of the problem, and
since you don't know why does it crash, you cannot possibly know what
parts of the info are relevant. Chances are, you will remove the most
important parts.
- Raw text -