The bootloader is now buildable on all platforms (#497)

It is now also linked with LLD, so it can be compiled out of the box on Linux, Windows, and macOS.
This commit is contained in:
Philipp Oppermann
2018-11-09 08:56:19 +01:00
committed by GitHub
parent b5b39d1b6e
commit a56112e789
5 changed files with 150 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
#![no_std] // don't link the Rust standard library
#![feature(abi_x86_interrupt)]
extern crate bootloader_precompiled;
extern crate bootloader;
extern crate spin;
extern crate volatile;
#[macro_use]