NMAKE : fatal error U1077: 'cl' : return code '0x2'

Joined
Jul 17, 2010
Messages
13
Reaction score
1
I'm trying to follow this tutorial to install ruby/tk. http://www.tkdocs.com/tutorial/install.html
Under the section for installing on windows they instruct to download Visual Studio 2010 (link provided on the webpage) to compile the source.

When I run the configure batch file;
win32\configure.bat --prefix=c:\ruby

I get this error:
NMAKE : fatal error U1077: 'cl' : return code '0x2'

How can I fix this?
 

TrainableMan

^ The World's First ^
Moderator
Joined
May 10, 2010
Messages
9,353
Reaction score
1,587
From Microsoft...

The given command or program called by NMAKE failed and returned the given exit code.
To suppress this error and continue the NMAKE session, use the /I option, the .IGNORE dot directive, or the dash (-) command modifier. To continue the NMAKE session for unrelated parts of the dependency tree, use the /K option.
 
Joined
Mar 17, 2016
Messages
1
Reaction score
0
From Microsoft...

The given command or program called by NMAKE failed and returned the given exit code.
To suppress this error and continue the NMAKE session, use the /I option, the .IGNORE dot directive, or the dash (-) command modifier. To continue the NMAKE session for unrelated parts of the dependency tree, use the /K option.
First of all......Thanks a lot for spending your time on this case. I also met the same problem, I can continue to compile openssl after I use /I , but no generated DLL which I want, such as openssl-1.0.2g\out32dll\libeay32.dll and libssl32.dll.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top