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

@@ -372,7 +372,7 @@ Cargo supports hybrid projects that are both a library and a binary. We only nee
#![no_std] // don't link the Rust standard library
extern crate bootloader_precompiled;
extern crate bootloader;
extern crate spin;
extern crate volatile;
#[macro_use]