# GNU linker (ld) Run the GNU linker (ld) during your Cargo build. ```rust extern crate ld; fn main() { ld::link("example", "src/boot.ld", &["boot.o", "kmain.o"]); } ```