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
Current Linux amd64 binary is dynamic, hindering portability. Compiling the binaries with CGO_ENABLED=0 makes it static and portable.
$ ./vanityssh-go
bash: ./vanityssh-go: No such file or directory
$ ldd vanityssh-go
linux-vdso.so.1 (0x00007ffc599d5000)
libc.musl-x86_64.so.1 => not found
$ file vanityssh-go
vanityssh-go: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-musl-x86_64.so.1, Go BuildID=DiMN-g1SUN0PxhASWWWY/GxVvsHDIje60s51eyo7_/-7hLh4XLjsltgOBUg0_1/UAd0-UReNj_EhMP_hYhU, with debug_info, not stripped
The text was updated successfully, but these errors were encountered:
Current Linux amd64 binary is dynamic, hindering portability. Compiling the binaries with
CGO_ENABLED=0
makes it static and portable.$ ./vanityssh-go bash: ./vanityssh-go: No such file or directory $ ldd vanityssh-go linux-vdso.so.1 (0x00007ffc599d5000) libc.musl-x86_64.so.1 => not found $ file vanityssh-go vanityssh-go: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-musl-x86_64.so.1, Go BuildID=DiMN-g1SUN0PxhASWWWY/GxVvsHDIje60s51eyo7_/-7hLh4XLjsltgOBUg0_1/UAd0-UReNj_EhMP_hYhU, with debug_info, not stripped
The text was updated successfully, but these errors were encountered: