I would like to know if there is an option to import many header files (C++ headers) into lldb. My goal is to be able to parse addresses as structs/objects, for example:p *(some_struct *)<some_address
but LLDB doesn't recognize some_struct, obviously, because it doesn't contain the symbols.
I read about clang's modules, but I'm not sure I will be able to import so many header files into the definition of a custom module. The header files are spread across many folder.
Thanks!