views:

329

answers:

2

Hi

in my project i have enabled /clr (Common Language Runtime) support as well as /MTd (Multithreded Debug) option in code generation section.

But the compiler shows /clr and /MTd are incompatable types. I need to use both.
How to fix this?

Thanks in advance.

+1  A: 

use the /MDd option instead, which is compatible with the /clr

Shay Erlichmen
A: 

u can not use both optionsin a project because c/clr needs switches for that it must use

dynamic libraries instead of static.if u use /mtd it uses static libraries.so u can not '

use /clr and /mtd

Cute