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

前端 未结 2 1225
无人及你
无人及你 2021-01-04 02:15

I\'m trying to follow steps explained here: but after entering the following into console:

configure.exe -release -no-webkit -no-phonon -no-phonon-backend -n         


        
2条回答
  •  耶瑟儿~
    2021-01-04 02:41

    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.

提交回复
热议问题