Hello. A. Kalten wrote: > But here is the output from the GNU Debugger with timidity > CVS HEAD compiled using --enable-debug and gcc-4.3.0: > Program received signal SIGILL, Illegal instruction. > 0x0000000000470084 in init_gm2_vol_table () > (gdb) bt > #0 0x0000000000470084 in init_gm2_vol_table () > #1 0x000000000047a165 in main () But that looks actually as if the debug info is still disabled - no line numbers, no variables... Try
CFLAGS=-ggdb3 ./configure make clean make and try again with the stack trace. You may find out the source line number, which would be valueable. Also, as now you've busted the optimization, it might be possible to find out the exact optimizer option at fault. First, see what optimization level breaks and what not. Try CFLAGS=-O1 for instance. Then see "man gcc" to see what options are enabled on that optimization level, and try enabling them manually. See which one breaks. ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ Timidity-talk mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/timidity-talk
