tags:

views:

119

answers:

2

Is there any debugger, like gdb or something else, aimed for C/C++, that runs on top of LLVM?

Given how well engineered LLVM is, this almost seems like a perfect opportunity.

+4  A: 

Try llvm-db.

TTT
This is amazing; and has restored my faith in Stackoverflow. For the brilliance of answers like these, the silly policy-Nazis on SO can be tolerated.
anon
+1  A: 

Recently, the LLDB project was created as a modular tool for adding debugging capabilities to LLVM. At this time it only supports OS X, but it has a C++ api, a standalone executable and Python bindings.

http://lldb.llvm.org/

jvoorhis