intermezzOS / kernel

A hobby operating system, in Rust
http://intermezzos.github.io/
Apache License 2.0
1.39k stars 91 forks source link

Makefile looks for generic "ld" instead of the cross-compiler explicitly #19

Closed rschulman closed 8 years ago

rschulman commented 8 years ago

IntermezzOS' Makefile calls "ld" but uses the generic name, which on many systems will be the default linker. We should instead be calling x86_64-pc-elf-ld, the explicitly created (hopefully in a chapter in the book?) cross-linker.