kernel/.cargo/config.toml

26 lines
455 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
2024-05-14 10:43:38 -04:00
# Options for riscv32 (not currently in use)
#
# [target.riscv32imac-unknown-none-elf]
# runner = """ qemu-system-riscv32
# -cpu rv32
# -machine virt
# -m 150M
# -s
# -nographic
# -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 """