Hacker News new | ask | show | jobs
by cozzyd 53 days ago
Do linker scripts look the same in the rust tool chain? (E.g. for implementing a bootloader?)
1 comments

Yes. It uses the same linker as a C/llvm toolchain, by the time you link the object files from Rust are in the same format as the object files from C would be. You use the exact same linker script format too.