-
Notifications
You must be signed in to change notification settings - Fork 60
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
Content test: windows dll / lib with ABI version #1116
Comments
Isuru pointed out on Element:
Another common pattern from GMP: - test ! -f ${PREFIX}/lib/libgmp.a # [unix]
- test -f ${PREFIX}/lib/libgmp.dylib # [osx]
- test -f ${PREFIX}/lib/libgmp.so # [linux]
- test ! -f ${PREFIX}/lib/libgmpxx.a # [unix]
- test -f ${PREFIX}/lib/libgmpxx.dylib # [osx]
- test -f ${PREFIX}/lib/libgmpxx.so # [linux]
- if not exist %LIBRARY_BIN%\libgmp-10.dll exit 1 # [win]
- if not exist %LIBRARY_LIB%\libgmp.dll.a exit 1 # [win]
- if not exist %LIBRARY_LIB%\gmp.lib exit 1 # [win] |
but is it common to have the |
I'd say that most of the time there is no version in the .lib filename. When there is a version, it's usually in the form |
FWI, i patched out the "lib" in the offending project and requested input from upstream aous72/OpenJPH#155 |
@jaimergp can we use your tool to run a query for the names of all I am not sure if enforcing a naming rule makes a lot of sense. I imagine that, if the CMake find_package works correctly, things will be found no-matter-what their name ends up. So we could also change the regex to something like |
The sqlite dumps are downloadable for this kind of large query that wouldn't be efficient in a public server. Some links:
|
The openjph package installs dll / lib files with a ABI version like
foo.0.17.dll
andfoo.0.17.lib
.Should we support that?
The text was updated successfully, but these errors were encountered: