On Sat, Feb 02, 2013 at 07:51:38PM +0100, Gabriel Schnoering wrote: > I can't run guile in gdb as there are some error with the garbage > collector.
These are probably not errors. Many language interpretors rely on receiving SIGSEGV to implement memory. Use the gdb "handle" command to make it automatically pass on SIGSEGV signals so that you only catch the SIGILL you're interested in. -- Richard Braun