mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-23 04:54:29 +00:00
24 lines
677 B
Makefile
24 lines
677 B
Makefile
all:
|
|
install
|
|
compile
|
|
regression
|
|
|
|
# install copies over the Makefile.include from riscv-isa-sim
|
|
# And corrects the TARGETDIR path and the RISCV_PREFIXZ
|
|
|
|
install:
|
|
cp ${RISCV}/riscv-isa-sim/arch_test_target/spike/Makefile.include addins/riscv-arch-test/
|
|
sed -i '/export TARGETDIR ?=/c\export TARGETDIR ?= ${RISCV}/riscv-isa-sim/arch_test_target' addins/riscv-arch-test/Makefile.include
|
|
echo export RISCV_PREFIX = riscv64-unknown-elf- >> addins/riscv-arch-test/Makefile.include
|
|
|
|
compile:
|
|
make -C addins/riscv-arch-test
|
|
make -C addins/riscv-arch-test XLEN=32
|
|
cd tests/wally-riscv-arch-test; exe2memfile.pl work/*/*/*.elf
|
|
|
|
regression:
|
|
make -C wally-pipelined/regression
|
|
|
|
|
|
|