NMAKE : fatal error U1077: return code '0xc0000135'

左心房为你撑大大i 提交于 2019-11-30 17:46:31
hmuelner

A web search for "return code 0xc0000135" turned up the information that this means nmake cannot find the compiler. Which means that you did not start nmake in a Visual Studio command shell. If you want to use a standard command shell you have to call vcvarsall.bat or similar in the VC directory of you Visual Studio installation. If it still does not work, check the INCLUDE and LIB environment variables. They should contain ...\VC\INCLUDE and %ProgramFiles%\Microsoft SDKs\Windows\v6.0A\include and the corresponding LIB dirs.

when you configured you forgot to add the comipiler option..

Open up microsoft visual studio command prompt and navigate to the directory of Qt source code.

type

configure -platform win32-msvc2010 

and then run

nmake
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!