12345678910111213141516171819202122232425262728 |
- [config]
- default_to_workspace = false
- [tasks.clean]
- command = "cargo"
- args = ["clean"]
- [tasks.prototyper-build]
- command = "cargo"
- args = ["build", "-prustsbi-prototyper", "--release"]
- [tasks.prototyper]
- command = "rust-objcopy"
- args = ["--binary-architecture=riscv64", "target/riscv64imac-unknown-none-elf/release/rustsbi-prototyper",
- "--output-target=binary", "target/riscv64imac-unknown-none-elf/release/rustsbi-prototyper.bin"
- ]
- dependencies = ["prototyper-build"]
- [tasks.test-kernel-build]
- command = "cargo"
- args = ["build", "-prustsbi-test-kernel", "--release"]
- [tasks.test-kernel]
- command = "rust-objcopy"
- args = ["--binary-architecture=riscv64", "target/riscv64imac-unknown-none-elf/release/rustsbi-test-kernel",
- "--output-target=binary", "target/riscv64imac-unknown-none-elf/release/rustsbi-test-kernel.bin"
- ]
- dependencies = ["test-kernel-build"]
|