Advertisement

conflicting libraries?

Started by June 16, 2001 03:24 AM
0 comments, last by mattd 23 years, 7 months ago
LINK : warning LNK4098: defaultlib "LIBC" conflicts with use of other libs; use /NODEFAULTLIB:library What does this mean? I only seem to get this when I use my custom wrapper library, ddwrap.lib. Or should I just shut up and do what it says? ----------------------------------------------------- Joe''s appliance repair company! If God didn''t assemble it, we can repair it!
quote:
Original post by mattd

LINK : warning LNK4098: defaultlib "LIBC" conflicts with use of other libs; use /NODEFAULTLIB:library

What does this mean? I only seem to get this when I use my custom wrapper library, ddwrap.lib.

Or should I just shut up and do what it says?

-----------------------------------------------------
Joe''s appliance repair company!
If God didn''t assemble it, we can repair it!


It seems that you have included some libs in your project that do not work together. Do you may mix up multithreaded and non multithreaded, or debug and non debug libs in your code. I think somewhere in your app you use another version of libc from somehwere else. The best is to dump your project as a makefile and send it here or you should take a look to your linker settings where you can find which libs are included.

What you can try first is to do as you have been told, that means use nodefaultlib on libc.

NODEFAULTLIB:LIBC

cu

Peter

HPH

This topic is closed to new replies.

Advertisement