LNK1104 libcimt.lb

  • Thread starter Thread starter jweizman
  • Start date Start date
J

jweizman

Hi

I wrote a DLL with a dependency of a lib library which is NOT mine. So
i can't do any change inside.

How can i still compile my library ? I have the LNK1104 error : can't
open file 'libcimt.lib'.

I have read in the forum that i should change include "iostream.h" to
include<iostream>, however i can do that since i do not have access
the lib source code.

Can you help ?
Thanks
Jonathan
 
jweizman said:
Hi

I wrote a DLL with a dependency of a lib library which is NOT mine. So
i can't do any change inside.

How can i still compile my library ? I have the LNK1104 error : can't
open file 'libcimt.lib'.

I have read in the forum that i should change include "iostream.h" to
include<iostream>, however i can do that since i do not have access
the lib source code.

Can you help ?

You'll need to get a newer version of the library, or build your code with
an older version (i.e. VC6) of the compiler.

-cd
 
Back
Top