RE: Debugging a custom GCC Back End

2008-08-03 Thread Dave Korn
Balthasar Biedermann wrote on 03 August 2008 14:59: > The compilation of my custom GCC works, but the binary I get is not > working. I always get the "internal compiler error: Segmentation fault" > message if I try to Compile a c-file. > But the GCC don't tell me, where or why the error occurred.

Debugging a custom GCC Back End

2008-08-03 Thread Balthasar Biedermann
Hi, I'm creating a GCC Back-End for a virtual CPU. I have already created a Machine Description (cpu.md) File and the Target Description Makro Files (cpu.h cpu.c). I have only implemented all the makros, which are needed for compiling the GCC. But not all which are needed for the CPU. The co