Question

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)?

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top