On 11/20/05, Michael Sullivan <[EMAIL PROTECTED]> wrote:
> I copied my code into a KDevelop project and built it.  I then placed a
> breakpoint on "int main (int argv, char** argc) and selected Start from
> the Debug menu.  It immediately gave me a dialog that said "Program
> received SIGABRT.  Aborted."  It did not tell me where my Segfault came
> from.  Is there a way to get it to tell me, or at least allow me to step
> through my program without instantly shutting down?

That is very strange.  Did you build your program with the '-g'
(debug) option to gcc?

Also try "strace -s256 <programname>".  It will give you an idea of
what system calls your program is making at the time of the segfault,
and maybe give you a starting point of where to look in the code.

-Richard


>
> --
> gentoo-user@gentoo.org mailing list
>
>

-- 
gentoo-user@gentoo.org mailing list

Reply via email to