where 1

for example:

[EMAIL PROTECTED]:C:1075> cat hell.cc; g++ -g -o hell hell.cc
#include <iostream>
int main(int, char**) {
   std::cout << "hell" << std::endl;
   return 0;
}
[EMAIL PROTECTED]:C:1076> gdb hell
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "i486-linux-gnu"...
(gdb) where 1
No stack.
(gdb) break main
Breakpoint 1 at 0x80486c5: file hell.cc, line 3.
(gdb) run
Starting program: /home/yotam/C/hell 

Breakpoint 1, main () at hell.cc:3
3          std::cout << "hell" << std::endl;
(gdb) where 1
#0  main () at hell.cc:3
(gdb) 


-- yotam


On Sat, 29 Nov 2008 11:29:07 +0200
"Ohad Lutzky" <[EMAIL PROTECTED]> wrote:

> I thought tracking source code was gdb's job... (Hitting l? And does
> anyone know, off the top of their heads, how to get it to show the
> current line number and file?)
_______________________________________________
Haifux mailing list
Haifux@haifux.org
http://hamakor.org.il/cgi-bin/mailman/listinfo/haifux

Reply via email to