summaryrefslogtreecommitdiff
path: root/build.rs
blob: 5a33378cd12faf6681c7cc5287ec5746e7e08040 (plain) (blame)
1
2
3
4
5
6
7
fn main() {
    cc::Build::new()
        .target("arm-none-eabihf")
        .compiler("clang")
        .file("src/start.s")
        .compile("start");
}