kernel/.cargo/config.toml

25 lines
434 B
TOML
Raw Normal View History

2024-05-13 18:31:37 -04:00
# .cargo/config.toml
[build]
target = "riscv64imac-unknown-none-elf"
2024-05-13 18:31:37 -04:00
# options for riscv32 (not currently in use)
2024-05-13 18:31:37 -04:00
[target.riscv32imac-unknown-none-elf]
runner = """ qemu-system-riscv32
-cpu rv32
-machine virt
-m 150M
-s
-nographic
2024-05-13 23:07:46 -04:00
-serial mon:stdio
-bios """
[target.riscv64imac-unknown-none-elf]
runner = """ qemu-system-riscv64
-cpu rv64
-machine virt
-m 150M
-s
-nographic
-serial mon:stdio
2024-05-13 18:31:37 -04:00
-bios """