We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Basically means we need to rewrite part of the functionalities patchelf provides in Rust!
https://github.com/PyO3/maturin/blob/main/src/auditwheel/patchelf.rs
patchelf --print-rpath
patchelf --set-rpath
patchelf --remove-rpath
patchelf --set-soname
patchelf --replace-needed
The text was updated successfully, but these errors were encountered:
native-tls
No branches or pull requests
Basically means we need to rewrite part of the functionalities patchelf provides in Rust!
https://github.com/PyO3/maturin/blob/main/src/auditwheel/patchelf.rs
patchelf --print-rpath
, replace with goblin, easy one: Use goblin instead of shelling out to patchelf to get rpath #1139patchelf --set-rpath
andpatchelf --remove-rpath
, edit runtime pathpatchelf --set-soname
, change ELF shared library namepatchelf --replace-needed
, replace name of shared library dependenciesThe text was updated successfully, but these errors were encountered: