mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-08 18:37:11 +00:00
![Daniel Thornburgh](/assets/img/avatar_default.png)
This creates a library for fetching debug info by build ID, whether locally or remotely via debuginfod. The functionality was refactored out of existing code in the Symboliize library. Existing utilities were refactored to use this library. Reviewed By: phosek Differential Revision: https://reviews.llvm.org/D132504
12 lines
286 B
CMake
12 lines
286 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Object
|
|
Support
|
|
)
|
|
add_llvm_tool(llvm-debuginfod-find
|
|
llvm-debuginfod-find.cpp
|
|
)
|
|
target_link_libraries(llvm-debuginfod-find PRIVATE LLVMDebuginfod)
|
|
if(LLVM_INSTALL_BINUTILS_SYMLINKS)
|
|
add_llvm_tool_symlink(debuginfod-find llvm-debuginfod-find)
|
|
endif()
|