forked from qt-creator/qt-creator
Android plugin
Change-Id: Iad58914f067a6ef6d3412ccd42f757d821e39e45 Reviewed-by: Alessandro Portale <alessandro.portale@nokia.com>
This commit is contained in:
committed by
Daniel Teske
parent
cf4ecad4bc
commit
50e8f7bb7b
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user