c·c++

NMAKE : fatal error U1077: '"path\cl.exe"' : return code '0xc0000135'

toyship 2014. 6. 18. 14:10
반응형

opensource인 shape library를 받았는데,

makefile.vc 로 되어 있어서..   nmake로 컴파일 하려고 할때 에러가 나더라..

 

 

NMAKE : fatal error U1077: '"path\cl.exe"' : return code '0xc0000135'

 

구글신에게 물어보니.

http://social.msdn.microsoft.com/Forums/en-US/325b5459-c469-40d0-bf6d-e3356a2f14cd/nmake-fatal-error-u1077-pathclexe-return-code-0xc0000135?forum=Vsexpressvc

 

 

I had the same error when I forgot to launch vcvarsall.bat before compiling from Dos.
Maybe cl.exe finds wrong libraries when the Paths are not good. 


중요한건, vcvarsall.bat 를 탐색기에서 실행해봤자 소용없다.

command 창에서 직접실행하고 nmake해야 한다.

반응형