From 72c0d7fdd3d0930c7507060e96aec7d7429a8190 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Tue, 13 Sep 2011 19:42:23 +0000 Subject: Sketch out a DWARF parser. This introduces a new library to LLVM: libDebugInfo. It will provide debug information parsing to LLVM. Much of the design and some of the code is taken from the LLDB project. It also contains an llvm-dwarfdump tool that can dump the abbrevs and DIEs from an object file. It can be used to write tests for DWARF input and output easily. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139627 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-dwarfdump/CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tools/llvm-dwarfdump/CMakeLists.txt (limited to 'tools/llvm-dwarfdump/CMakeLists.txt') diff --git a/tools/llvm-dwarfdump/CMakeLists.txt b/tools/llvm-dwarfdump/CMakeLists.txt new file mode 100644 index 0000000000..05aad3f0b0 --- /dev/null +++ b/tools/llvm-dwarfdump/CMakeLists.txt @@ -0,0 +1,8 @@ +set(LLVM_LINK_COMPONENTS + DebugInfo + Object + ) + +add_llvm_tool(llvm-dwarfdump + llvm-dwarfdump.cpp + ) -- cgit v1.2.3