Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"CL.exe" exited with code -1073741515

Tags:

visual-c++

I'm using a Windows 7 64-bit machine. I downloaded the express version of VC++ and the Windows SDK. I need to compile my code in a 64-bit compiler. When compiling, I get the following error:

"CL.exe" exited with code -1073741515

What does this error mean?

like image 554
Pankaj Goyal Avatar asked May 19 '26 05:05

Pankaj Goyal


2 Answers

The value -1073741515 is 0xC0000135 in hex, which basically means "some dll not found". (http://www.qtcentre.org/threads/57083-1073741515-problem)

like image 93
Ferenc Deak Avatar answered May 23 '26 19:05

Ferenc Deak


I found a very useful & generic guide to convert these cl.exe exit codes to human meaningful messages here: Visual Studio 2010 C native compilation problem

To summarize:

  • convert the negative decimal exit code to a hexadecimal number (you can use the Windows built in calculator in the Programmer mode for this)
  • take the last 8 hexadecimal digits and search them in the table on the Microsoft NT status codes web page
like image 21
Fara Importanta Avatar answered May 23 '26 18:05

Fara Importanta



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!