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
I haven't looked deeply into the code yet, but it seems like it's only created when doing cargo cinstall and not cargo cbuild.
Allowing for creation under cargo cbuild would help simplify development instructions such as those for pkgcraft-bash that ask the user to create the requisite symlink themselves when building projects for development purposes without installing them.
The text was updated successfully, but these errors were encountered:
If you want to support uninstalled with shared library it requires to install the dylibs in a local path and patch the rpaths (in particular for macos)
It is the cleanest way that works for every platform, on macOS I'd have to invoke install_name_tool and patch up the binary to add the correct rpaths since there is no other way to set it externally (the env variable is disregarded due to security concerns)
I haven't looked deeply into the code yet, but it seems like it's only created when doing
cargo cinstall
and notcargo cbuild
.Allowing for creation under
cargo cbuild
would help simplify development instructions such as those for pkgcraft-bash that ask the user to create the requisite symlink themselves when building projects for development purposes without installing them.The text was updated successfully, but these errors were encountered: