Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do debuggers know the line numbers in the source code?

Debuggers like the ones in Eclipse, NetBeans, Visual Studio etc

I am wondering because, debuggers work on the machine code while it is being executed... How they keep track of the line numbers in the source code?

Isn't it very difficult to keep track of line numbers since a high level instruction may have a bunch of machine language instructions and another might have no machine language instruction (probably because it is just supporting another high level instruction)?

like image 768
Sam Avatar asked Jan 08 '13 18:01

Sam


1 Answers

When you compile your code with debugging flags (e.g., gcc -g ...), the compiler inserts information about the source files and line numbers into the compiled binary so that the debugger can use this information during runtime. This answer discusses debugging symbols in more detail.

like image 110
larsks Avatar answered Oct 12 '22 07:10

larsks