assemble.sh 615 B

12345678910111213141516171819
  1. #!/bin/bash
  2. set -euxo pipefail
  3. crate=riscv-rt
  4. # remove existing blobs because otherwise this will append object files to the old blobs
  5. rm -f bin/*.a
  6. for ext in i ic im imc
  7. do
  8. riscv64-unknown-elf-gcc -ggdb3 -fdebug-prefix-map=$(pwd)=/riscv-rt -c -mabi=ilp32 -march=rv32${ext} asm.S -o bin/$crate.o
  9. riscv64-unknown-elf-ar crs bin/riscv32${ext}-unknown-none-elf.a bin/$crate.o
  10. riscv64-unknown-elf-gcc -ggdb3 -fdebug-prefix-map=$(pwd)=/riscv-rt -c -mabi=lp64 -march=rv64${ext} asm.S -o bin/$crate.o
  11. riscv64-unknown-elf-ar crs bin/riscv64${ext}-unknown-none-elf.a bin/$crate.o
  12. done
  13. rm bin/$crate.o