Revert "[lldb] Add minidump save-core functionality to ELF object files"

This reverts commit aafa05e03d.

Broke builder on aarch64 --
https://lab.llvm.org/buildbot/#/builders/96/builds/10926
This commit is contained in:
Andy Yankovsky
2021-08-31 13:36:53 +02:00
parent 7ec7272b80
commit 1f986f6057
14 changed files with 10 additions and 1202 deletions

View File

@@ -1228,8 +1228,7 @@ lldb::SBError SBProcess::SaveCore(const char *file_name) {
FileSpec core_file(file_name);
SaveCoreStyle core_style = SaveCoreStyle::eSaveCoreFull;
error.ref() =
PluginManager::SaveCore(process_sp, core_file, core_style, ConstString());
error.ref() = PluginManager::SaveCore(process_sp, core_file, core_style);
return LLDB_RECORD_RESULT(error);
}