================ @@ -333,6 +335,23 @@ ArchSpec ProcessMinidump::GetArchitecture() { return ArchSpec(triple); } +DynamicLoader *ProcessMinidump::GetDynamicLoader() { + if (m_dyld_up.get() == nullptr) + m_dyld_up.reset(DynamicLoader::FindPlugin( + this, DynamicLoaderPOSIXDYLD::GetPluginNameStatic())); ---------------- labath wrote:
The dynamic loader choice will only be correct linux (and other elf systems). How about we drop this override to get the default behavior? https://github.com/llvm/llvm-project/pull/109477 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits