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
Another issue is that runtime_deploy does not keep any tree structure.
For example, the openssl package has lib/engines-3/capi.so.
Deployers should keep these trees intact.
I considered trying full_deploy instead and post-processing its output to merge all the packages together into one single tree, something like mv full_deploy/host/*/*/*/*/lib*/* lib64/mv full_deploy/host/*/*/*/*/bin/* bin/
But there's also mystery with full_deploy, it doesn't seem to deploy the runtime libs:
Describe the bug
Keeping the bug report info from #16527.
The
runtime_deployer
from #15382 is a very good addition to Conan, but the implementation currently has some defects:*.so
files (e.g.libz.so
) are copied, but not*.so.*
(e.g.libz.so.1
andlibz.so.1.3.1
).shutil.copy2(..., follow_symlinks=symlinks)
should beshutil.copy2(..., follow_symlinks=not symlinks)
.How to reproduce it
No response
The text was updated successfully, but these errors were encountered: