LNK1104: cannot open file 'libcimt.lib'  
Author Message
gigo318





PostPosted: Visual C++ General, LNK1104: cannot open file 'libcimt.lib' Top

I am trying to compile a c++ project and the LNK1104: cannot open file 'libcimt.lib' shows up. what is the path to the file or how do i get around this.

Visual C++4  
 
 
nobugz





PostPosted: Visual C++ General, LNK1104: cannot open file 'libcimt.lib' Top

Are you compiling with Microsoft Visual Studio 6 or compiling a MSVC6 project with VS2003/2005



 
 
gigo318





PostPosted: Visual C++ General, LNK1104: cannot open file 'libcimt.lib' Top

I am compiling with a MSVC2005 express project
 
 
Nishant Sivakumar





PostPosted: Visual C++ General, LNK1104: cannot open file 'libcimt.lib' Top

I am trying to compile a c++ project and the LNK1104: cannot open file 'libcimt.lib' shows up. what is the path to the file or how do i get around this.

See http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=283747&SiteID=1



 
 
gigo318





PostPosted: Visual C++ General, LNK1104: cannot open file 'libcimt.lib' Top

"You seem to be using the obsolete non-template based iostream library. You need to use the new one, thereby removing the dependency on the old lib, and also remove the lib from your project's linker settings."

This was the answer from the link. What is the new library, and how do i remove the old one from my linker settings.

 
 
Nishant Sivakumar





PostPosted: Visual C++ General, LNK1104: cannot open file 'libcimt.lib' Top

(1) Use #include <iostream> instead of iostream.h - do similarly for other such headers.

(2) Remove the lib from the linker settings.