Files
clang-p2996/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/CMakeLists.txt
aokblast b3cc4804d4 [lldb][FreeBSD] Add dynamic loader handle class for FreeBSD Kernel (#67106)
The implemtation support parsing kernel module for FreeBSD Kernel and
has been test on x86-64 and arm64.
In summary, this class parse the linked list resides in the kernel
memory that record all kernel module and load the debug symbol file to
facilitate debug process
2023-10-03 14:16:32 -04:00

14 lines
250 B
CMake

add_lldb_library(lldbPluginDynamicLoaderFreeBSDKernel PLUGIN
DynamicLoaderFreeBSDKernel.cpp
LINK_LIBS
lldbBreakpoint
lldbCore
lldbHost
lldbInterpreter
lldbSymbol
lldbTarget
lldbUtility
lldbPluginObjectFileELF
)