forked from qt-creator/qt-creator
Debugger: avoid 32 bit cdb detection
Change-Id: I75c8dd4e764b3d16387fb49271bf0b973e0f45b7 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -549,7 +549,7 @@ void DebuggerItemModel::autoDetectCdbDebuggers()
|
|||||||
|
|
||||||
for (const QFileInfo &kitFolderFi : kitFolders) {
|
for (const QFileInfo &kitFolderFi : kitFolders) {
|
||||||
const QString path = kitFolderFi.absoluteFilePath();
|
const QString path = kitFolderFi.absoluteFilePath();
|
||||||
QStringList abis = {"x86", "x64"};
|
QStringList abis = {"x64"};
|
||||||
if (HostOsInfo::hostArchitecture() == Utils::OsArchArm64)
|
if (HostOsInfo::hostArchitecture() == Utils::OsArchArm64)
|
||||||
abis << "arm64";
|
abis << "arm64";
|
||||||
for (const QString &abi: abis) {
|
for (const QString &abi: abis) {
|
||||||
|
Reference in New Issue
Block a user