vs2022 Why vcpkg installed libmysql:x86-windows-static after Will the compilation link to Boost? #42421
-
Boost_thread-vc143-mt-x32-1_86.lib (thread. cpp. obj): error LNK2038: Checked "RuntimeLibrary" mismatches: the value "MT_StaticRelease" does not match the value "MD_DynamicRelease" (in dllmain. obj) I found that if the vcpkg connection attribute in the project attribute is changed to static, it will be connected to the boost database. What is the reason? it this bug? |
Beta Was this translation helpful? Give feedback.
Answered by
dg0yt
Nov 29, 2024
Replies: 1 comment 1 reply
-
Do you try to mix a dynamic-CRT project with a static-CRT windows triplet? |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
xengine-qyt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you try to mix a dynamic-CRT project with a static-CRT windows triplet?
Maybe you want to use
x86-windows-static-md
(dynamic CRT)?