Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

llvm-pdbutil - PDB File forensics and diagnostics

Tags:

llvm

pdb-files

Where can I find a llvm-pdbutil from LLVM? Few people mentioned it comes with installation package, but I could not find any inside.

like image 989
def Avatar asked Sep 13 '25 22:09

def


1 Answers

llvm-pdbutil is part of the LLVM Compiler toolchain.

It isn't currently distributed with the LLVM binaries, at least not with 7.0.0, so you'll have to build LLVM from source for obtaining it.

However, if you don't mind using a home-brewed 64-bit Windows build, try mine:
https://github.com/shaharv/llvm-pdbutil-builds/releases

It is built from 9.0.0svn (developement branch) on Windows 10 and Visual Studio 2017 Community. Note that Visual Studio 2015 C++ Redistributable is required.

Also, make sure to visit the llvm-pdbutil project homepage for getting started. Good luck! https://llvm.org/docs/CommandGuide/llvm-pdbutil.html

like image 169
valiano Avatar answered Sep 17 '25 19:09

valiano