Should I link to the Visual Studio C runtime statically or dynamically?

前端 未结 4 1714
离开以前
离开以前 2020-12-01 01:21

I have read arguments on both sides about whether one should link to the C runtime library statically or dynamically in Visual Studio projects, and I\'m still not entirely s

4条回答
  •  有刺的猬
    2020-12-01 01:43

    Static libraries don´t need to be statically linked to other static libraries. You only need to link all static libraries in your main project. That way the compiler will not complain about multiple symbols.

提交回复
热议问题