Anyone else seen this?
# cat >test.c
int main() {}
# gcc -g test.c
# gdb a.out
GNU gdb 6.6.50_20070925
Copyright (C) 2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/l
icenses/gpl.html>
This is free software: you are free to change and
redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type
"show copying"
and "show warranty" for details.
This GDB was configured as
"powerpc-linux-gnuspe"...
Using host libthread_db library
"/lib/libthread_db.so.1".
(gdb) r
Starting program: /root/a.out
Program terminated with signal SIGSEGV, Segmentation fault.
The program no longer exists.
(gdb)
|