guile segfaults when run in GDB
Guile can't be run into GDB.
gdb guile
(gdb) run
Starting program: /usr/bin/guile
Program received signal SIGSEGV, Segmentation fault.
0x00007ffff7d93463 in GC_find_limit_with_bound () from /usr/lib/libgc.so.1
outside of the repl too:
gdb guile
(gdb) run -c '(display (+ 1 3))'
Starting program: /usr/bin/guile -c '(display (+ 1 2))'
Program received signal SIGSEGV, Segmentation fault.
0x00007ffff7d93463 in GC_find_limit_with_bound () from /usr/lib/libgc.so.1
The issue also shows up if you start Aisleriot in gdb, for example, as it loads guile on startup. (gdb sol
)
The error seems to come from the gc
package.
Edited by Ghost User