From 43a8c39b9c6e99e001c6433f0148120f2af04a2b Mon Sep 17 00:00:00 2001 From: Caroline Tice Date: Fri, 15 Oct 2010 21:52:38 +0000 Subject: [PATCH] Disable "process.macosx" plugin, since it is not being actively supported at the moment, and no longer works properly (bit rot). llvm-svn: 116626 --- lldb/source/Commands/CommandObjectProcess.cpp | 2 +- lldb/source/lldb.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp index c6c2779336b8..62b4a0f15868 100644 --- a/lldb/source/Commands/CommandObjectProcess.cpp +++ b/lldb/source/Commands/CommandObjectProcess.cpp @@ -168,7 +168,7 @@ public: if (process == NULL) { - result.AppendErrorWithFormat ("Failed to find a process plugin for executable"); + result.AppendErrorWithFormat ("Failed to find a process plugin for executable.\n"); result.SetStatus (eReturnStatusFailed); return false; } diff --git a/lldb/source/lldb.cpp b/lldb/source/lldb.cpp index 0f85c570b964..2ae93308186b 100644 --- a/lldb/source/lldb.cpp +++ b/lldb/source/lldb.cpp @@ -80,7 +80,7 @@ lldb_private::Initialize () ObjectContainerUniversalMachO::Initialize(); ObjectFileMachO::Initialize(); ProcessGDBRemote::Initialize(); - ProcessMacOSX::Initialize(); + //ProcessMacOSX::Initialize(); SymbolVendorMacOSX::Initialize(); #endif Debugger::GetSettingsController (false); @@ -117,7 +117,7 @@ lldb_private::Terminate () ObjectContainerUniversalMachO::Terminate(); ObjectFileMachO::Terminate(); ProcessGDBRemote::Terminate(); - ProcessMacOSX::Terminate(); + //ProcessMacOSX::Terminate(); SymbolVendorMacOSX::Terminate(); #endif