Debugger: avoid 32 bit cdb detection

Change-Id: I75c8dd4e764b3d16387fb49271bf0b973e0f45b7
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2024-06-06 13:36:37 +02:00
parent cbd596f608
commit 421210e609

View File

@@ -549,7 +549,7 @@ void DebuggerItemModel::autoDetectCdbDebuggers()
for (const QFileInfo &kitFolderFi : kitFolders) {
const QString path = kitFolderFi.absoluteFilePath();
QStringList abis = {"x86", "x64"};
QStringList abis = {"x64"};
if (HostOsInfo::hostArchitecture() == Utils::OsArchArm64)
abis << "arm64";
for (const QString &abi: abis) {