Reading a .pdb file
Asked Answered
U

5

39

I have a lot of files in .pdb format, some of them downloaded, but until now I can't use or read what's inside, so I'm looking for how to read and view the .pdb file format from MS Windows XP.

Any of you that may know how to open it?

Uvula answered 11/1, 2010 at 5:45 Comment(0)
I
46

If you mean PDB as in a "program database" that the debugger uses:

PDB files contain data about a file such as an EXE or DLL that is used to aid in debugging. There are public interfaces that allow you to extract data from the file. See examples here:

If you mean PDB as in a Palm Pilot Database, then I know nothing about it, but the file format is available here:

Indonesia answered 11/1, 2010 at 6:0 Comment(0)
C
38

Microsoft released the source code of their PDB formats, so other compiler developers like the LLVM team can implement the PDB format easier.

https://github.com/Microsoft/microsoft-pdb/

To actually dump the output of a file, just use this:

https://github.com/Microsoft/microsoft-pdb/blob/master/cvdump/cvdump.exe

cvdump Whatever.pdb
Concessive answered 29/5, 2016 at 15:7 Comment(3)
will not run : --------------------------- Unsupported 16-Bit Application --------------------------- The program or feature "\??\C:\Users\ehfsbxw\Downloads_Opera\cvdump.exe" cannot start or run due to incompatibity with 64-bit versions of Windows. Please contact the software vendor to ask if a 64-bit Windows compatible version is available. --------------------------- OK ---------------------------Awed
Exactly, @SashaBond, none of this is complete ... and they don't seem to be working on it anymore. So the only option is to take what's there and attempt to make as much sense of it as possible.Elute
Works for me on Windows 10 x64.Shaped
V
28

Portable PDB

Classic (non-portable) PDB

Vogeley answered 30/1, 2020 at 15:7 Comment(1)
For clarification, dotPeek can open pdb files directly via Tools | Show PDB ContentJohathan
L
14

Nowadays, I highly recommend LLVM's PDB parser, llvm-pdbutil.

It is an excellent and feature rich PDB dumper and great to complement Microsoft's cvdump.
For details and documentation, see:

Some useful commands for getting started:

  • llvm-pdbutil dump -all your.pdb
  • llvm-pdbutil bytes -syms your.pdb
  • llvm-pdbutil -help

Getting llvm-pdbutil:

As per LLVM 7.0.0, the latest official release, llvm-pdbutil.exe is not distributed with the LLVM binaries, so it has to be built from source.

However, if you're OK with a non official, Windows 64-bit binary, my home-brewed llvm-pdbutil builds are available here (note Visual C++ 2015 Redistributable is required):

https://github.com/shaharv/llvm-pdbutil-builds/releases

Building llvm-pdbutil:

For building llvm-pdbutil from source on Windows, you'll have to get and setup LLVM build. Follow the instructions on https://llvm.org/docs/GettingStarted.html.

There are some needed additions for PDB support, though. To summarize (for VS 2017):

  • Clone the LLVM repo: git clone https://github.com/llvm/llvm-project.git
  • cd llvm-project
  • mkdir build && cd build
  • If not running from Visual Studio console: set VSINSTALLDIR=c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\.
  • cmake -G "Visual Studio 15 2017" -A x64 -Thost=x64 -DLLVM_ENABLE_DIA_SDK=ON ../llvm
  • In Visual Studio, build the Tools/llvm-pdbutil project.
Leonelleonelle answered 5/2, 2019 at 19:18 Comment(1)
thanks for posting this, and esp. the compiled executablesVenice
S
6

You can use the DBH tool from Windows SDK.

&'C:\Program Files\Debugging Tools for Windows (x64)\dbh.exe' -v MySymbol.pdb dump
Shaped answered 17/10, 2018 at 14:15 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.