Android plugin

Change-Id: Iad58914f067a6ef6d3412ccd42f757d821e39e45
Reviewed-by: Alessandro Portale <alessandro.portale@nokia.com>
This commit is contained in:
BogDan Vatra
2012-04-18 20:30:57 +03:00
committed by Daniel Teske
parent cf4ecad4bc
commit 50e8f7bb7b
77 changed files with 11649 additions and 10 deletions

View File

@@ -60,7 +60,7 @@ void DebuggerToolChainComboBox::init(bool hostAbiOnly)
const ProjectExplorer::Abi hostAbi = ProjectExplorer::Abi::hostAbi();
foreach (const ProjectExplorer::ToolChain *tc, ProjectExplorer::ToolChainManager::instance()->toolChains()) {
const ProjectExplorer::Abi abi = tc->targetAbi();
if (!hostAbiOnly || hostAbi.os() == abi.os()) { // Offer MSVC and Mingw, etc.
if (!hostAbiOnly || hostAbi.isCompatibleWith(abi)) {
const QString debuggerCommand = tc->debuggerCommand().toString();
if (!debuggerCommand.isEmpty()) {
const AbiDebuggerCommandPair data(abi, debuggerCommand);