Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The ABI of the selected debugger does not match the toolchain ABI

When I try to run my project in QtCreator with debug configuration, I get the following error:

"The ABI of the selected debugger does not match the toolchain ABI."

I don't even know what an ABI is. What settings should I check? What could be wrong?

This is my "Desktop" configuration:

image description

When I hover it, QtCreator shows the same error in the tooltip.

like image 698
Tomáš Zato - Reinstate Monica Avatar asked Oct 29 '22 09:10

Tomáš Zato - Reinstate Monica


1 Answers

When I had this problem it was because the debugger did not match the compiler. I suspect here it is because a 64 bit compiler is matched with 32 bit cdb (in the x86 rather than x64 directory).

like image 93
Matthew Avatar answered Nov 15 '22 08:11

Matthew