Page 1 of 1

Linking errors when compiling beta version... [solved]

Posted: Sat Oct 13, 2007 2:47 pm
by Nextor
Hiya, folks

I get some linking errors when compiling the new beta version with Visual C++, some unresolved externals related to some IImageLoader functions and some other classes (I never get those with earlier versions). I don't get them when using Dev C compiler though, just some warnings.

Does anyone get the same problems than me, or it's just that I'm some dumbass...?

Thanx

Posted: Sat Oct 13, 2007 6:20 pm
by vitek
You might need to update the project file. If you had posted the exact error message I might have been able to help you.

Posted: Sun Oct 14, 2007 7:49 am
by Nextor
Yes, here's a screenshot from the compiler, I didn't copy the full lenght messages though :oops:

Thanks a lot for your help, Vitek

http:\\nestorsite.iespana.es\media\shot.JPG

Posted: Sun Oct 14, 2007 10:50 am
by Ico
Haven't got those errors (compiling latest svn; just opened/imported the vs8 workspace/project) using the VC9 beta. However I disabled most of these loaders - except the IrrMeshWriter. So I should at least get that error.

Posted: Mon Oct 15, 2007 7:17 am
by Nextor
Eventually, I had to remove these defines, related to some loaders that I don't use, to avoid errors:

#define _IRR_COMPILE_WITH_IRR_MESH_LOADER_
#define _IRR_COMPILE_WITH_STL_LOADER_
#define _IRR_COMPILE_WITH_IRR_WRITER_
#define _IRR_COMPILE_WITH_COLLADA_WRITER_
#define _IRR_COMPILE_WITH_STL_WRITER_
#define _IRR_COMPILE_WITH_PPM_LOADER_

I still got a number of warnings though.

Thanx