如何为visualstudio c ++项目指定/ clr和/ mtd选项

时间:2022-09-01 09:20:20

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

在我的项目中,我在代码生成部分启用了/ clr(公共语言运行时)支持以及/ MTd(多线程调试)选项。

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

但是编译器显示/ clr和/ MTd是不兼容的类型。我需要同时使用它们。如何解决这个问题?

Thanks in advance.

提前致谢。

2 个解决方案

#1


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

请改用/ MDd选项,它与/ clr兼容

#2


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

你不能在项目中使用这两个选项,因为c / clr需要它必须使用的开关

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

动态库而不是static.if你使用/ mtd它使用静态库。所以你不能'

use /clr and /mtd

使用/ clr和/ mtd

#1


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

请改用/ MDd选项,它与/ clr兼容

#2


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

你不能在项目中使用这两个选项,因为c / clr需要它必须使用的开关

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

动态库而不是static.if你使用/ mtd它使用静态库。所以你不能'

use /clr and /mtd

使用/ clr和/ mtd