←back to thread

196 points generichuman | 2 comments | | HN request time: 0.408s | source
Show context
sylware ◴[] No.43552021[source]
This article missed a critical point which is "the right way" to select a glibc ABI version: see binutils ld documentation, second part of the page related to VERSION support. This must include glibc internal symbols.

This will allow to craft ELF binaries on a modern distro which will run on "older" distros. This is critical for games and game engines. There is an significant upfront only-once work in order to select an "old" glibc ABI.

The quick and dirty alternative being having a toolchain configured to link with an "old" glibc on the side.

This article missed the -static-libstdc++ critical option for c++ applications (the c++ ABI is hell on earth), but did not miss the -static-libgcc and the dynamic loading of system interface shared libs.

replies(4): >>43552297 #>>43552425 #>>43552438 #>>43552524 #
vlovich123 ◴[] No.43552438[source]
Which works if you use binutils ld. Does it work with mold or gold? And then how do you use this with languages other than c++/c like Go or Rust?
replies(2): >>43552604 #>>43555719 #
1. rjsw ◴[] No.43552604[source]
I thought that Go invoked syscalls directly instead of going through libc.
replies(1): >>43552725 #
2. jfuafdfwa ◴[] No.43552725[source]
It's Go's best feature, a simple CGO_ENABLED=0 gives you freedom from the tyranny of libc.