Change build command to target more specific architecture

This commit is contained in:
Hugo Mårdbrink 2024-03-25 12:27:58 +01:00
parent 748b5ae9e4
commit a4399d486d

View file

@ -7,5 +7,5 @@ Therefore, this project places emphasis on energy efficient configurations in co
## To build:
```bash
riscv64-unknown-elf-gcc -march=rv64gcv main.c -lm -o dct2d_riscv.out
riscv64-unknown-elf-gcc -march=rv64imadcv -mabi=lp64d main.c -lm -o dct2d_riscv.out
```