-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vcpkg (silently) links wrong libraries #5540
Comments
I can reproduce this problem with libdb38.lib, which uses the same library name for debug and release version |
fixes microsoft#5540 b
fixes microsoft#5540 b
closed by #5543. Wrong library linkage will throw an error |
I agree with other posters here that the current way of VcpkgAutoLink under MSBuild is very problematic. VcpkgAutoLink adds each and every one lib in the vcpkg-triplet lib directory as a dependency to the linker. I just spent over two hours debugging a very hard to find runtime problem. Our application uses python 2.7 and links against python27.lib. This lib is explicitly given in our Visual Studio solution project. I recently added vcpkg boost to my system. As a result, the application suddenly tries to load python38.dll instead of python27.dll. The reason is that the boost library has a submodule boost-python, which has python 3.7 as a dependency. As a result, vcpkg builds python and creates a python37.lib in its lib directory. Our application does not even use boost-python, there is absolutely no dependency to python 3.7 anywhere. But simply because python37 is part of the boost vcpkg package, it is force linked to our application. Basically what VcpkgAutoLink does is change our linker command from link someobj.obj python27.lib to link someobj.obj vcpkg*.lib python27.lib That is, IMHO, a really, really bad idea. Boost is a very large collection of (very good) libraries. I use them all the time. But I usually have no idea and don't care, what other libs they depend on. VcpkgAutoLink forces all other libs on me, even if I don't use the corresponding boost library. Or consider openssl. My application might use the latest openssl library and link against the most recent libssl.lib with security fixes. Simply introducing any vcpkg package that also uses openssl will link an older library and I will not even notice. OTOH I cannot simply deactivate VcpkgAutoLink, because then I have to manually link all libraries I use. Which is a hassle in a very large application. Any ideas? Regards |
Is this still exist? |
Probably. Need to grep through all |
This question should be outdated, I will close it. |
This can still happen.... |
Okay, will remain open. |
There are at least two cases where vcpkg (silently) links the wrong libraries:
a) Due to VcpkgAutoLink
related issue: #5485 (comment)
b) Due to CMakeToolchain vcpkg.cmake
cmake find_package links debug libraries instead of release libraries in release mode.
related issue: #4606
I encountered b) while using find_package with LAPACK and OpenBLAS (This one is extremely nasty for consuming packages. Performance of release builds is thus probably bad)
(Issue opened for better search result and hopefully fixing ASAP ;) )
for b) it is probably wise to replace
<PackageName>_LIBRARIES
with a general generator expression something like:added to vcpkg.cmake @ 254ff (in the else block of the find_package macro)
(same for _INCLUDES/_INCLUDE_DIR and others.... )
The text was updated successfully, but these errors were encountered: