Skipping the Linker Entirely
§1 Provenance Go internal linker: https://github.com/golang/go/tree/master/src/cmd/link Zig self-hosted backends: https://ziglang.org/devlog/2025/ Zig linker source layout: https://github.com/ziglang/zig/tree/master/src/link LLD as a library API: lld::elf::link() , lld::macho::link() , lld::coff::link() , lld::wasm::link() at https://github.com/llvm/llvm-project/tree/main/lld/include/lld/Common "Mostly statically linked" Go binary mechanism (debug/elf, debug/macho, debug/pe writers in the standard library): https://pkg.go.dev/debug/elf Authors are language toolchain authors: the Go team (Russ Cox, Cherry Mui, Than McIntosh on linker), the Zig team (Andrew Kelley, Jakub Konka), and the Wild...