Now the linux platform lets it be known that it can't launch processes for

debugging.

llvm-svn: 145221
This commit is contained in:
Greg Clayton 2011-11-28 01:47:46 +00:00
parent 6d110aa84d
commit cc23eb6fbf
1 changed files with 6 additions and 0 deletions

View File

@ -98,6 +98,12 @@ namespace lldb_private {
Attach(ProcessAttachInfo &attach_info, Debugger &debugger,
Target *target, Listener &listener, Error &error);
virtual bool
CanDebugProcess ()
{
return false;
}
protected: