commit | 61ddf56b2526dab3f9485c87db414978cbd9e285 | [log] [tgz] |
---|---|---|
author | Greg Clayton <gclayton@apple.com> | Fri Oct 21 21:41:45 2011 +0000 |
committer | Greg Clayton <gclayton@apple.com> | Fri Oct 21 21:41:45 2011 +0000 |
tree | 751792d8b162c440a2a65f76c02d1e4993850583 | |
parent | d91085396ec4b61e678c32f90dc3f40f44bad121 [diff] [blame] |
If a process plug-in was specified by name, always let the plug-in get used. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@142688 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 70147d4..2c50b6e 100644 --- a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -103,6 +103,9 @@ bool ProcessGDBRemote::CanDebug (Target &target, bool plugin_specified_by_name) { + if (plugin_specified_by_name) + return true; + // For now we are just making sure the file exists for a given module Module *exe_module = target.GetExecutableModulePointer(); if (exe_module)