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
{{ message }}
This repository has been archived by the owner on Jan 14, 2024. It is now read-only.
Hi,
I used to install nushell in my custom build based on siverblue-nvidia:38 with this script: #!/usr/bin/env bash set -oue pipefail echo 'This script will install nushell from cargo.io' cargo install --root /usr nu
I tried upgrading to silverblue-nvidia:39 and now this script fails with error: collect2: fatal error: cannot find 'ld'
Now I added this line in the script: ln -sf /usr/bin/ld.bfd /etc/alternatives/ld && ln -sf /etc/alternatives/ld /usr/bin/ld
which solves the issue.
However, I guess this should be done in the silverblue-nvidia:39 image.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I used to install
nushell
in my custom build based on siverblue-nvidia:38 with this script:#!/usr/bin/env bash set -oue pipefail echo 'This script will install nushell from cargo.io' cargo install --root /usr nu
I tried upgrading to silverblue-nvidia:39 and now this script fails with error:
collect2: fatal error: cannot find 'ld'
Now I added this line in the script:
ln -sf /usr/bin/ld.bfd /etc/alternatives/ld && ln -sf /etc/alternatives/ld /usr/bin/ld
which solves the issue.
However, I guess this should be done in the silverblue-nvidia:39 image.
Beta Was this translation helpful? Give feedback.
All reactions