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
14 lines
250 B
CMake
14 lines
250 B
CMake
add_lldb_library(lldbPluginDynamicLoaderFreeBSDKernel PLUGIN
|
|
DynamicLoaderFreeBSDKernel.cpp
|
|
|
|
LINK_LIBS
|
|
lldbBreakpoint
|
|
lldbCore
|
|
lldbHost
|
|
lldbInterpreter
|
|
lldbSymbol
|
|
lldbTarget
|
|
lldbUtility
|
|
lldbPluginObjectFileELF
|
|
)
|