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
we only set the rpath if the library already has rpath or runpath set
set the rpath to a relative path. Note that relative paths are interpreted by the dynamic linker as relative to the current working directory, not relative to the library. To use a path relative to the library, we need $ORIGIN.
When grafting a library, it's dependencies are either:
So, we should always set the rpath of the grafted library to point at the .libs directory.
Currently (see
auditwheel/src/auditwheel/repair.py
Line 155 in 9b0de8d
$ORIGIN
.So, the patch I'm proposing is:
The text was updated successfully, but these errors were encountered: