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
/ # ./deadlinks-linux
/bin/sh: ./deadlinks-linux: not found
/ # ldd deadlinks-linux
/lib64/ld-linux-x86-64.so.2 (0x7f92f963f000)
libssl.so.1.1 => /lib/libssl.so.1.1 (0x7f92f8d99000)
libcrypto.so.1.1 => /lib/libcrypto.so.1.1 (0x7f92f8b1a000)
libdl.so.2 => /lib64/ld-linux-x86-64.so.2 (0x7f92f963f000)
librt.so.1 => /lib64/ld-linux-x86-64.so.2 (0x7f92f963f000)
libpthread.so.0 => /lib64/ld-linux-x86-64.so.2 (0x7f92f963f000)
Error loading shared library libgcc_s.so.1: No such file or directory (needed by deadlinks-linux)
libc.so.6 => /lib64/ld-linux-x86-64.so.2 (0x7f92f963f000)
Error loading shared library ld-linux-x86-64.so.2: No such file or directory (needed by deadlinks-linux)
libm.so.6 => /lib64/ld-linux-x86-64.so.2 (0x7f92f963f000)
Error relocating deadlinks-linux: _Unwind_Resume: symbol not found
Error relocating deadlinks-linux: _Unwind_GetIPInfo: symbol not found
Error relocating deadlinks-linux: __res_init: symbol not found
Error relocating deadlinks-linux: _Unwind_GetDataRelBase: symbol not found
Error relocating deadlinks-linux: _Unwind_GetRegionStart: symbol not found
Error relocating deadlinks-linux: _Unwind_SetGR: symbol not found
Error relocating deadlinks-linux: _Unwind_GetTextRelBase: symbol not found
Error relocating deadlinks-linux: _Unwind_RaiseException: symbol not found
Error relocating deadlinks-linux: _Unwind_GetIP: symbol not found
Error relocating deadlinks-linux: _Unwind_Backtrace: symbol not found
Error relocating deadlinks-linux: _Unwind_GetLanguageSpecificData: symbol not found
Error relocating deadlinks-linux: _Unwind_SetIP: symbol not found
and this error after installing libgcc:
/ # ldd deadlinks-linux
/lib64/ld-linux-x86-64.so.2 (0x7fa877374000)
libssl.so.1.1 => /lib/libssl.so.1.1 (0x7fa876ace000)
libcrypto.so.1.1 => /lib/libcrypto.so.1.1 (0x7fa87684f000)
libdl.so.2 => /lib64/ld-linux-x86-64.so.2 (0x7fa877374000)
librt.so.1 => /lib64/ld-linux-x86-64.so.2 (0x7fa877374000)
libpthread.so.0 => /lib64/ld-linux-x86-64.so.2 (0x7fa877374000)
libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0x7fa87683b000)
libc.so.6 => /lib64/ld-linux-x86-64.so.2 (0x7fa877374000)
Error loading shared library ld-linux-x86-64.so.2: No such file or directory (needed by deadlinks-linux)
libm.so.6 => /lib64/ld-linux-x86-64.so.2 (0x7fa877374000)
Error relocating deadlinks-linux: __res_init: symbol not found
denoland/deno#1495 (comment) points to this needing glibc support. cargo-deadlinks should instead target x86_64-unknown-linux-musl, which doesn't require glibc.
The text was updated successfully, but these errors were encountered:
Currently, they give this error by default:
and this error after installing
libgcc
:denoland/deno#1495 (comment) points to this needing glibc support. cargo-deadlinks should instead target
x86_64-unknown-linux-musl
, which doesn't require glibc.The text was updated successfully, but these errors were encountered: