On Wed, Mar 12, 2014 at 6:35 PM, Paulo Matos <pa...@matos-sorge.com> wrote: > > So, I decide to run the gracket command under gdb but now it segfaults > immediately without displaying drracket window. > $ gdb --args /home/pmatos/local-install/racket-6.0/bin/../lib/gracket -N > local-install/racket-6.0/bin/drracket -J DrRacket -l- drracket/drracket.rkt
Racket uses page faults to manage memory, so you need to do: (gdb) handle SIGSEGV nostop noprint and then continue, and if there's an error, it will halt in `abort()`. Sam _________________________ Racket Developers list: http://lists.racket-lang.org/dev