This is the mail archive of the cygwin@sources.redhat.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

segv when running program with gdb


I just ran the install off the cygwin homepage last
night so I believe I have the latest everything. I
tried to run simple C program with GDB and my program
segfaults. When I run it without gdb everything works
fine.  The program is the standard hello world -

#include <stdio.h>

int main(int argc, char** argv)
{
  printf("Hello world!\n");
  return 0;
}

Then
$ gcc -g test.c

Then
$ a.exe
Hello World!

Then 
$ gdb a.exe (Note that this brings up the GUI Insight
debugger. I thought that was only in the commercial
version. I can't find a way to just bring up the
command line debugger...)

debug session:

(gdb) run

Program received signal SIGSEGV, Segmentation fault.
0x77f6ce4c in ?? ()

Starting program: /home/administrator/a.exe 

(gdb) bt
#0  0x77f6ce4c in ?? ()
#1  0x77f67586 in ?? ()
#2  0x77de1385 in ?? ()
#3  0x77dce50c in ?? ()
#4  0x77e12315 in _size_of_stack_reserve__ ()
#5  0x77e54734 in _size_of_stack_reserve__ ()
#6  0x77dce496 in ?? ()
#7  0x77dc3dc4 in ?? ()
#8  0x77dc3e91 in ?? ()
#9  0x100012fe in _size_of_stack_reserve__ ()
#10 0x77f6b5fe in ?? ()
#11 0x77f63b86 in ?? ()
#12 0x77f13ac2 in ?? ()
#13 0x77f137da in ?? ()
#14 0x77e7a810 in _size_of_stack_reserve__ ()
#15 0x77f635ab in ?? ()
#16 0x77f6b5fe in ?? ()
#17 0x77f63b86 in ?? ()
#18 0x77f13ac2 in ?? ()
#19 0x77f13838 in ?? ()
#20 0x77f137ca in ?? ()
#21 0x6100163e in _size_of_stack_reserve__ ()
#22 0x6100b307 in _size_of_stack_reserve__ ()
#23 0x6100373d in _size_of_stack_reserve__ ()
#24 0x61003904 in _size_of_stack_reserve__ ()
#25 0x4010c3 in cygwin_crt0 ()

(gdb) 

__________________________________________________
Do You Yahoo!?
Yahoo! Shopping - Thousands of Stores. Millions of Products.
http://shopping.yahoo.com/

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]