-
-
Notifications
You must be signed in to change notification settings - Fork 498
--set-rpath fails with “no version information available”, while exporting LD_LIBRARY_PATH works #99
New issue
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
Comments
I might be running into the same issue, probonopd/linuxdeployqt#44 |
This was referenced Dec 3, 2016
To solve this, don't run strip on resulting binary. I've tried using #127 and it didn't solve the issue. |
Sadly this expression doesn't build anymore, but all the references issues have been fixed. Make sure to come up with a way to reproduce this if the problem still exists. |
samhh
added a commit
to samhh/dotfiles
that referenced
this issue
Apr 2, 2022
Stripping breaks the binary like so: NixOS/patchelf#99
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So I’ve got this expression to install Transcribe!, that is distributed in binary form:
When I run this, I’m getting:
However, after removing
--set-rpath
and wrapping the program in a wrapper that exportsLD_LIBRARY_PATH
with what was previously passed to--set-rpath
, the program launches.Also, with
--set-rpath
,ldd $(which transcribe)
returns lots of the exact error,no version information available
. After setting a properLD_LIBRARY_PATH
, it shows correct paths.The
RPATH
in original binary is empty.How can I get this to work using
--set-rpath
only?The text was updated successfully, but these errors were encountered: