Verifying CRT used in library (.lib)

前端 未结 2 1832
被撕碎了的回忆
被撕碎了的回忆 2021-02-20 04:34

How do I check what runtime library a static library (.lib) in Windows has linked to?

I\'m compiling my project with /MDd and I presume a library I\'m linking to is usin

2条回答
  •  青春惊慌失措
    2021-02-20 05:20

    Since MSVPRTD.LIB is the importlib of the dynamic link library of the crt, while you explicitely asked to link to the crt statically, something seems wrong with your build chain.

    You may want to check the project file visually for contradictions.

提交回复
热议问题