Makefile.toml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. [config]
  2. default_to_workspace = false
  3. [tasks.clean]
  4. command = "cargo"
  5. args = ["clean"]
  6. [tasks.prototyper-nemu-build]
  7. command = "cargo"
  8. args = ["build", "-prustsbi-prototyper", "--release", "--features=nemu,payload"]
  9. [tasks.prototyper-nemu]
  10. command = "rust-objcopy"
  11. args = [
  12. "--binary-architecture=riscv64",
  13. "target/riscv64imac-unknown-none-elf/release/rustsbi-prototyper",
  14. "--output-target=binary",
  15. "target/riscv64imac-unknown-none-elf/release/rustsbi-prototyper.bin",
  16. ]
  17. dependencies = ["prototyper-nemu-build"]
  18. [tasks.prototyper-build]
  19. command = "cargo"
  20. args = [
  21. "build",
  22. "-prustsbi-prototyper",
  23. "--release",
  24. "--target",
  25. "riscv64imac-unknown-none-elf",
  26. "-Zbuild-std=core",
  27. ]
  28. env = { "RUSTFLAGS" = "-C relocation-model=pie -C link-arg=-pie" }
  29. [tasks.prototyper]
  30. command = "rust-objcopy"
  31. args = [
  32. "--binary-architecture=riscv64",
  33. "target/riscv64imac-unknown-none-elf/release/rustsbi-prototyper",
  34. "--output-target=binary",
  35. "target/riscv64imac-unknown-none-elf/release/rustsbi-prototyper.bin",
  36. ]
  37. dependencies = ["prototyper-build"]
  38. [tasks.test-kernel-build]
  39. command = "cargo"
  40. args = ["build", "-prustsbi-test-kernel", "--release"]
  41. [tasks.test-kernel]
  42. command = "rust-objcopy"
  43. args = [
  44. "--binary-architecture=riscv64",
  45. "target/riscv64imac-unknown-none-elf/release/rustsbi-test-kernel",
  46. "--output-target=binary",
  47. "target/riscv64imac-unknown-none-elf/release/rustsbi-test-kernel.bin",
  48. ]
  49. dependencies = ["test-kernel-build"]
  50. [tasks.test-kernel-itb]
  51. script = '''
  52. cp test-kernel/scripts/rustsbi-test-kernel.its target/riscv64imac-unknown-none-elf/release
  53. cd target/riscv64imac-unknown-none-elf/release/
  54. mkimage -f rustsbi-test-kernel.its rustsbi-test-kernel.itb
  55. rm rustsbi-test-kernel.its
  56. cd ../../../
  57. '''
  58. dependencies = ["prototyper", "test-kernel"]