[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: DDD freezes with "Open->Source File ..."
From: |
Andrew Gaylard |
Subject: |
Re: DDD freezes with "Open->Source File ..." |
Date: |
Thu, 19 Jan 2006 17:20:04 -0500 |
User-agent: |
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20051101 |
Humberto Bortolossi wrote:
>Greetings!
>
> I'm trying to debug a C++/wxWidgets project
> using DDD under cygwin. However, DDD freezes
> when I try to open a project file with
> "File->Open Source ...".
>
> Indeed, it seems DDD (GDB?) tries to create a list
> of ALL source files, including the source files of
> wxWidgets itself. I've tried to modify
> the "Source path" option
> in "Edit->GDB preferences" but it doesn't work.
> I just would like to see my own project files
> with "File->Open Source...".
>
>
>
Humberto,
Have you tried the following in the gdb window?
file ./your_executable
break main
run
What happens?