I am aware of this question, but I don't understand the only answer given.
How do I tell OllyDbg where the source code is when I have no PDB file (debug symbols) available?
I am aware of this question, but I don't understand the only answer given.
How do I tell OllyDbg where the source code is when I have no PDB file (debug symbols) available?
You cannot tell Ollydbg or for that matter any debugger where source code is without having Debug Information.
The Source Line information is available only in the Debug Information File.
As far as I know gcc when built with -g option embeds the Debug Information inside the Executable itself (you may need strip to strip the debug info from the binary).
But msvc with /Zi switch always creates a separate pdb file. You can use the binplace or pdbcopy utility to selectively strip Debug Information from this pdb file.
I googled vectorcast and it seems to be a software testing suite and its site says it is compatible with MSVC tool chain up to Visual Studio 2013.
*.pdb or *.dwarf :-( Maybe I ought to ask a question about that? (not necessarily here)
– Mawg says reinstate Monica
Jul 31 '18 at 12:44
OllDbg is a Windows tool and thus using a windows library dbghelp.dll to do the debugging work. You can tell that by listing Olly's dlls:
And dbghelp.dll uses symbol files to link the binary information with the source code.
Thus you tell OllyDbg where the source code is by using the PDB file. PDB is what links your binary file with your source code.
The following excerpt still holds - Specify symbol (.pdb) and source files in the Visual Studio debugger:
A program database (.pdb) file, also called a symbol file, maps the identifiers that you create in source code for classes, methods, and other code to the identifiers that are used in the compiled executables of your project. The .pdb file also maps the statements in the source code to the execution instructions in the executables. The debugger uses this information to determine two key pieces of information:
- Name of the source file and line number to be displayed in the Visual Studio IDE
- Location in the executable to stop at when you set a breakpoint
A symbol file also contains the original location of the source files, and optionally, the location of a source server where the source files can be retrieved from.
gcc -ggdb, I see neither a *.pdb nor a *.dwarf anywhere on my harddrive at all
– Mawg says reinstate Monica
Jul 31 '18 at 14:25