Question

I have a solution explorer contains 2 projects. For one project I have enabled /clr with /mdd. For parent project I have /mtd and no clr support. When I compile this I get two linker errors including the below one:

Link warning link 4098:Default lib can conflict with other lib use /NODEFAULTLIBS library

So my question is how to use /NODEFAULTLIBS in compilation.

Thanks in advance.

Was it helpful?

Solution

First you need to work out which library is causing the conflict, if you can. Does the link warning tell you anything?

Then you need to open the property pages for this project, and go to Linker -> Command Line. In the 'Additional Options' area, type:

/NODEFAULTLIB:xxx.lib

where xxx.lib is the conflicting library. However, if you couldn't work out which library it is, try just:

/NODEFAULTLIB

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top