-
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
Collection of common port issues #6045
Comments
There's also the case when consuming libraries cannot find a dependency due to "Fixable" by using a |
Please don't do that. Target RocksDB::rocksdb is probably intended to be always a static target while RocksDB::rocksdb-shared should always be a shared target. I had the same issue with hdf5 once and somebody thought it would be a good idea to redefine the targets. In x64-windows hdf5:hdf5-static was mapped to hdf5:hdf5-shared while in x64-windows-static it was the other way around. If you have problems with consuming packages not thinking about how to link correctly to rocksdb in all cases patch their behavior instead. If rocksdb is building shared as well as static targets (in e.g. x64-windows) do not deactivate that in vcpkg because of the missing target you generate with that. (Furthermore default behavior is unnecessary changed.) |
@Neumann-A thanks for the explanation. I haven't actually done it myself, it's just something I've noticed while reviewing PRs. I agree, that we shouldn't change the default behavior of libraries, however producing both shared and static libs will fail during post-build validation. We could probably add a variable that should be explicitly set for ports that produce both libraries, to bypass this post-build validation. |
Within vcpkg, it is our policy to "erase" the differences between static and shared targets. The reasoning for this is as follows:
Vcpkg provides a mechanism for that user to specify the single (shared/static) binary they want: the triplet file. For most libraries, this works perfectly. However, libraries (like rocksdb) which change their name between static and shared cause problems. It means that somehow, higher level libraries that build upon rocksdb need to be "told" which of rocksdb's targets to use. In practice, 99% of the time, this configuration is not properly expressed -- when it is switched upon, it usually is done as "if I'm building as static, then of course my dependency must be static". This is obviously over-restrictive (take the extremely common case of building static libraries on top of the shared system copy of openssl). Thus, leaving things as they are by default simply results in many failed builds for absolutely no reason. We therefore as a policy "erase" these distinctions by aliasing identical targets together, such as in the case of hdf5 and rocksdb. We will still recommend to the user that they use the "appropriate" target name for their configuration (so if you install |
I think this problem only occurs on -static triplets. In this case the port could try to set BUILD_SHARED_LIBS to OFF and observe if the package/port is doing the right thing (not installing DLLs).
That breaks downstream expectations. There might be a good reason why a library is actually linked statically with a shared CRT. One of those reasons is DLL-Hell which I don't know if it is still in issue but I saw strange behavior using MATLAB (HDF 1.8.12) and my program at the same time which both use hdf.dll if I link hdf dynamically so I assume yes. (Side Note: My program actual can use both MATLAB APIs and the newer HDF5 APIs (1.10.5), that is why I actually link hdf5-static).
Yes but it isn't solved by erasing the difference within vcpkg (see #5540 -> ##5485 (comment)). The main culprit here is the lazy linkage (VcpkgAutolink) within the visual studio integration which also requires the manual-link folder (which is prone to error as seen by the last mentioned issue). CMake does not require that because it explicitly links the correct library so there are no symbol clashes. In the end in might just come down to change the implementation of how vcpkg achieves the visual studio integration. At the same time you probably also want to fix the /include path and overwriting of headers file be moving everything into /include/packagename. Again this choice was probably made to have a lazy VS integration despite the obvious problems.
That is already untrue. Because in x64-windows some libraries are build as static libraries and can only be build as that. I assume that mantra lead to, what I call, the great vcpkg dll fiasko #6043. Be a bit more strict with your own guidelines which can be reinterpreted as:
and see x64-windows as all libraries (static/shared) with shared CRT linkage instead. |
@NancyLi1013 Don't unpin this. |
And
Wasn't there a single issue thread at one point (not so long ago) to bundle all of those issues together? I was looking for it to check if python3 was on it: I fixed it in my copy of the tree and was going to push up a patch via merge. But I wanted to check that someone else hadn't flagged it in that thread. Unfortunately, the issue search function is woeful and didn't turn up anything when I tried. The search function worked much better before all the weird changes were made to github. Does anyone know where the thread is please? (Hopefully maybe someone bookmarked it?) EDIT: I found it: #6368 but it looks like it has been closed. I've already pushed a pull request for python3. |
I think this approach will lead to some issues in terms of maintanance and stability. Second: some libraries might support static build, some might support shared, and some: both. I understand that one of the motivations is to support vcpkg integrate install. Maybe one other thing that could be useful is to support "vcpkg integrate install" on a per-package basis. |
doesn't matter. Also the VS integration won't work otherwise due to requiring
No the solution here is a custom triplet with per port customization. Do not mix different vcpkg installed folders!
won't work since you have not fixed the filename collision of import lib and static libs. You also have problems using
pkg-config on linux is kind of broken considering you have to pass |
Typo.
Now there is only "release" as single-config.
This is systematically broken by vcpkg for
Now there is only "release" as single-config. Additional problems:
|
We also should run post check in non-Windows to check the binary formats. |
Trying to get a list together of common port issues which have been seen in the past and have been fixed or are still in need of a fix (maybe the fix is already known and it it just must be applied):
Oberserved Problems?
library/ dll leading to the problems described in No postfix in debug dll of libwebm (followup) #6553What should new ports always test?
(after of course building successfully)
find_package
Should I ping people for more visibility?
Please add comments so that I can extend the list (and some of you have probably more experience than me fixing ports).
The text was updated successfully, but these errors were encountered: