user656925
user656925

Reputation:

Stepping through a program using Eclipse IDE

How do I step through the program one line at time.

Also, how do I view the console input?

I recently installed Eclipse IDE here:

http://www.eclipse.org/downloads/

Eclipse IDE for C/C++ Developers (includes Incubating components)

Here is a snapshot of the where I am at

Upvotes: 1

Views: 3676

Answers (1)

FailedDev
FailedDev

Reputation: 26930

Go to Run, Debug Configurations and click the Debugger tab.

Make sure that there is a gdb debugger selected. If not click Browse find the gdb.exe. It will probably be in your installation directory (of eclipse I mean under the /bin subdir).

Hope it helped. :D

Upvotes: 2

Related Questions