Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use /NODEFAULTLIBS option in compilation?

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.

like image 560
Cute Avatar asked Jun 03 '09 12:06

Cute


1 Answers

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

like image 98
Charles Anderson Avatar answered Sep 18 '22 17:09

Charles Anderson