cannot open file 'msvcirtd.lib' error although i'm using std c++

J

Julian

I am trying to compile a "legacy" code in VC++ .NET (2003)
this code works fine in VC6

I get the following error:

LNK1104: cannot open file 'msvcirtd.lib'

i read this page :
http://support.microsoft.com/kb/q154419/

and it says that it will link to above library if i use the old iostream
libraries. but i am not using any of the old iostream libraries !
i did a search on all the includes and this is the list of header files that
are used in the program that have a .h

#include <direct.h>
#include <io.h>
#include <math.h>
#include <direct.h>
#include <stdio.h>
#include <malloc.h>
#include <time.h>
#include <crtdbg.h>
#include <windows.h>
#include <GL\gl.h>
#include <GL\glu.h>
#include <GL\glaux.h>
#include <GL/gl.h>
#include <GL/glu.h>
#include<math.h>
#include <strings.h>
#include <wtypes.h>
#include <wincon.h>
#include <fcntl.h>


am i still using some wrong header file ?
 

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

Similar Threads


Top