Mail Archives: djgpp/1995/01/13/19:00:39
> I have set up GNU C++ 2.57 for use under windows but every time I try to
> run a complied file (a.out) using go32 I get a general protection fault
Build your application with debugging info (-g option) if you haven't already
done so, then run
symify appname
after the crash. Symify reads the dump from the screen and translates the
addresses into module names and line numbers. That should tell you where the
crash is happening, which might be enough. Does the program also crash
outside of Windows? If not, you may be doing something which is illegal
under dpmi.
- Raw text -