LNK1104 libcimt.lb

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
 
C

Carl Daniel [VC++ MVP]

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
 

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