From 4754b66f72a8fbfd48e30ae0bd12a44d13a4ce10 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Sun, 1 May 2022 17:50:00 +0200 Subject: initial commit Build small no_std example for rv64i target. This code executes some linux syscalls as demo and therefore expects to be executed in rv64 linux. --- .cargo/config | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .cargo/config (limited to '.cargo/config') diff --git a/.cargo/config b/.cargo/config new file mode 100644 index 0000000..6588394 --- /dev/null +++ b/.cargo/config @@ -0,0 +1,9 @@ +[build] +target = "riscv64imac-unknown-none-elf" + +[target.riscv64imac-unknown-none-elf] +# Effectively build for rv64i. +rustflags = ["-C", "target-feature=-m,-a,-c"] +runner = "qemu-riscv64" +#runner = "qemu-riscv64 -d in_asm" +#runner = "qemu-riscv64 -strace" -- cgit v1.2.3