From e65e9341880584db24fdcc3380985384a11b789b Mon Sep 17 00:00:00 2001 From: D4VID Date: Sun, 18 May 2025 22:27:12 +0200 Subject: [PATCH] Copy output to /tmp instead of home --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index b8ac56d..981c888 100644 --- a/test/Makefile +++ b/test/Makefile @@ -6,8 +6,8 @@ build: cargo build --release extract: build - riscv32-elf-objcopy -O binary --only-section=.text "target/riscv32i-unknown-none-elf/release/${NAME}" ~/text.bin - riscv32-elf-objcopy -O binary --only-section=.rodata "target/riscv32i-unknown-none-elf/release/${NAME}" ~/rodata.bin + riscv32-elf-objcopy -O binary --only-section=.text "target/riscv32i-unknown-none-elf/release/${NAME}" /tmp/text.bin + riscv32-elf-objcopy -O binary --only-section=.rodata "target/riscv32i-unknown-none-elf/release/${NAME}" /tmp/rodata.bin size: extract cargo size --release -- -A