|
|
|
|
|
by bobsomers
1381 days ago
|
|
Most static binaries are not completely statically linked. The system libstdc++ and libc as well as a few other things are almost always linked dynamically. In particular, it’s almost impossible to get glibc to link statically. You need to switch to musl or another libc that supports it. |
|
Go creates static binaries. I was a bit bummed out to learn that Rust doesn't by default since it requires glibc (and copying a binary to an older distribution fails because glibc is too old).