You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some ports contain !(windows & !static) (i.e. only static builds on Windows). This is incorrect because they can still build static libraries on these triplets as they don't require strictly just dynamic builds (the correct triplet for that scenario would be x64-windows-dynamic).
The correct way of disallowing DLLs is via vcpkg_check_linkage(ONLY_STATIC_LIBRARY).
The following ports are affected:
hexl
jsonnet
opentelemetry-cpp
quantlib
The text was updated successfully, but these errors were encountered:
Some ports contain
!(windows & !static)
(i.e. only static builds on Windows). This is incorrect because they can still build static libraries on these triplets as they don't require strictly just dynamic builds (the correct triplet for that scenario would bex64-windows-dynamic
).The correct way of disallowing DLLs is via
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
.The following ports are affected:
The text was updated successfully, but these errors were encountered: