1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// PLACE MODULES AND ANY COMPILER GLOBAL CONFIGS HERE

//
// API
//

pub mod bootimg;
pub mod builder;
pub mod readenv;

//
// TEST
//

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}

#[test]
fn test_build_basic() {
    let build = builder::Build::new(builder::Arch::Riscv64);
    // compile boot.S. (! should auto convert {...}.s to {...}.o using prefixing)
    build.assemble("asm/riscv64/boot.S", "build/boot.o");

    // should be specifying the staticlib as well, can get it from Cargo.toml or the API
    build.link(
        &[
            "build/boot.o".to_string(),
            "deps/libneutronkern.a".to_string(),
        ],
        "link/riscv64/linker.ld",
        "build/kernel.elf",
    );

    // cleanup
    build.clean();
}

#[test]
fn test_build_basic_chain() {
    let build = builder::Build::new(builder::Arch::Riscv64);
    build
        .assemble("asm/riscv64/boot.S", "build/boot.o")
        .link(
            &[
                "build/boot.o".to_string(),
                "deps/libneutronkern.a".to_string(),
            ],
            "link/riscv64/linker.ld",
            "build/kernel.elf",
        )
        .clean();
}