Thursday, 2 February 2017

c++ - Qt Creator error: LNK1123: failure during conversion to COFF: file invalid or corrupt

When i tried to debug project on QT 5.0 Creator (MSVC2010(x86)compiler 10.0) i have this error:




LNK1123: failure during conversion to COFF: file invalid or corrupt



I googled and i saw some solutions but only for Visual Studio 2012, i need solution of this problem for QT Creator.



Thank you.



Before this problem i had problem with MSVC(x86)compiler 11.0, and i was installed MSVC2010(x86)compiler 10.0 and now i have this error.

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...