vlovich123 2 days ago

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?

2
sylware 2 days ago

Rust toolchain has already a bug since 2015: it cannot link statically libgcc, namely it does not have "-static-libgcc" option since 2015.

I got the bug with "TinyGlade" video game (extremely good BTW), which is written in rust, and with the dev we hit that bug. Namely... better have a libgcc with the right ABI... and I can tell you, this has a been a HUGE issue since valve started to distribute games more than a decade ago.

vlovich123 1 day ago

As in you have to build on an old distro? Or something else?

rjsw 2 days ago

I thought that Go invoked syscalls directly instead of going through libc.

jfuafdfwa 2 days ago

It's Go's best feature, a simple CGO_ENABLED=0 gives you freedom from the tyranny of libc.