Wild – A Fast Linker for Linux

Wild linker Wild is a linker focused on speed for iterative development, with plans for incremental linking in the future. While not yet implemented, Wild is already quite fast without incremental linking. For production builds, GNU ld or LLD are recommended. Wild is currently usable for development on x86-64 Linux, offering faster warm build times. It supports various output types, Rust proc-macros, and most top downloaded crates on crates.io. Notable downsides include limited support for features like incremental linking, different architectures, and linker scripts. Wild aims to be a faster linker overall, although it may have some performance issues with debug info enabled.

https://github.com/davidlattimore/wild

To top