Files
Toooba/Tests/isa/build-assembler.sh
2026-03-11 16:00:42 +00:00

9 lines
410 B
Bash

# Send assembler file to remote machine to run
scp cheri.S home:/home/akilan/cheri/output/sdk/bin/
# Run compiled instruction remotely
ssh home 'cd /home/akilan/cheri/output/sdk/bin/ && ./clang --target=riscv64-unknown-elf -march=rv64gcxcheri -mabi=l64pc128 -nostdlib -nostartfiles -Wl,-Ttext=0x80000000 -o testC cheri.S'
# Copy file back for testing
scp home:/home/akilan/cheri/output/sdk/bin/testC .