Using GDB with standalone assembly code questions

Andrew Cagney ac131313@cygnus.com
Tue Jun 13 18:32:00 GMT 2000


David J Croyle wrote:


> (gdb) step
> Single stepping until exit from function _start,
> which has no line number information.
> The program is not being run


FYI, several things to be careful about.

Use stepi not step.

You may need to do a:

	(gdb) break *_start
or is that break *&_start?
	(gdb) run

to get things started.

	Andrew


More information about the Gdb mailing list