lldb: move away from local sockets to stdio coms

can now pluginto any host via ssh.
define QTC_LLDB_GUEST=/some/script in the env
where script is a wrapper that does ssh, or whatever you need
This commit is contained in:
Arvid Ephraim Picciani
2010-11-29 17:02:01 +01:00
parent 0ba7fd6720
commit 776a45df68
10 changed files with 160 additions and 63 deletions

View File

@@ -460,6 +460,8 @@ static DebuggerEngineType engineForToolChain(int toolChainType)
case ProjectExplorer::ToolChain_RVCT_ARMV5_GNUPOC:
case ProjectExplorer::ToolChain_GCCE_GNUPOC:
case ProjectExplorer::ToolChain_GCC_MAEMO:
if (getenv("QTC_LLDB_GUEST"))
return LldbEngineType;
#ifdef WITH_LLDB
// lldb override
if (Core::ICore::instance()->settings()->value("LLDB/enabled").toBool())