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
rustc 1.46.0 returns the following error upon execution:
rustc: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
As workaround, I pinned version 1.45.2, which works fine.
The text was updated successfully, but these errors were encountered:
Another easy workaround is to add the following to your shell.nix:
shellHook = '' export LD_LIBRARY_PATH=${zlib.out}/lib''${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} '';
Sorry, something went wrong.
Should this be
shellHook = '' export LD_LIBRARY_PATH=${zlib.out}/lib:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} '';
?
Thanks
Probably. No idea how that typo happened.
fixed in ab9b53e
No branches or pull requests
rustc 1.46.0 returns the following error upon execution:
As workaround, I pinned version 1.45.2, which works fine.
The text was updated successfully, but these errors were encountered: