Re: Questions about gnu debug

2009-12-24 Thread Reid Thompson
Marco Atzeri wrote: --- Gio 24/12/09, Liming ha scritto: Thanks. Csaba, I still not so clear about gdb, I am usually use microsoft Visual Studio 1. With g++ -g -o executable_name a.o b.o ... Can I set break point? or this one only display the place the code has problem, then go to there to

Re: Questions about gnu debug

2009-12-24 Thread Eliot Moss
And this may add a little to your understanding: gdb is a reasonable debugging tool, but is *command line* oriented. By itself, it provides no GUI interface. If you compile with -g then the available symbols let you talk about (non-local) variables, code locations, etc. emacs is an *editor*

Re: Questions about gnu debug

2009-12-24 Thread Reid Thompson
Eliot Moss wrote: And this may add a little to your understanding: Note these two options to gdb also... --tui Use a terminal user interface. -w Use a window interface. --tui will utilize a *curses interface -w brings up insight on my system -- Problem

Re: Questions about gnu debug

2009-12-24 Thread Marc Girod
record it. Marc -- View this message in context: http://old.nabble.com/Questions-about-gnu-debug-tp26904577p26917415.html Sent from the Cygwin list mailing list archive at Nabble.com. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq

Re: Questions about gnu debug

2009-12-24 Thread mike marchywka
I almost took this to talk list except for one comment that re-iterates the need for something like cygwin with windoze, On 12/24/09, Marc Girod marc.gi...@gmail.com wrote: Eliot Moss wrote: And this may add a little to your understanding: Few of which pertains to cygwin... Eliot Moss

Questions about gnu debug

2009-12-23 Thread Liming
I read the FAQ, but still very confused, please help. 1. I have a project written by C++, I want to debug it under Cygwin. I know I can use g++ -g, but I think this is for a single .cpp file. How to debug a whole Project? Anyway to debug the project inside a windows like editor? 2. The gnu C++

Re: Questions about gnu debug

2009-12-23 Thread Csaba Raduly
On Wed, Dec 23, 2009 at 6:48 PM, Liming linhai...@yahoo.com wrote: I read the FAQ, but still very confused, please help. 1. I have a project written by C++, I want to debug it under Cygwin. I know I can use g++ -g, but I think this is for a single .cpp file. Hi Liming, If you have a project

Re: Questions about gnu debug

2009-12-23 Thread Liming
with debug inside and can set break point? I just wondering if there has a software like Visual Studio IDE, so I can debug it inside it. --- On Wed, 12/23/09, Csaba Raduly rcs...@gmail.com wrote: From: Csaba Raduly rcs...@gmail.com Subject: Re: Questions about gnu debug To: cygwin@cygwin.com Cc

Re: Questions about gnu debug

2009-12-23 Thread Marco Atzeri
--- Gio 24/12/09, Liming ha scritto: Thanks. Csaba, I still not so clear about gdb, I am usually use microsoft Visual Studio 1. With g++ -g -o executable_nameĀ  a.o b.o ... Can I set break point? or this one only display the place the code has problem, then go to there to modify it?