mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Update root Makefile
This commit is contained in:
parent
05b776219b
commit
09122f91c8
37
Makefile
37
Makefile
@ -4,45 +4,34 @@
|
|||||||
|
|
||||||
SIM = ${WALLY}/sim
|
SIM = ${WALLY}/sim
|
||||||
|
|
||||||
all:
|
.PHONY: all riscof testfloat zsbl benchmarks coremark embench coverage clean
|
||||||
make riscof
|
|
||||||
make zsbl
|
all: riscof testfloat zsbl coverage # benchmarks
|
||||||
make testfloat
|
|
||||||
# make verify
|
|
||||||
make coverage
|
|
||||||
# make benchmarks
|
|
||||||
|
|
||||||
# riscof builds the riscv-arch-test and wally-riscv-arch-test suites
|
# riscof builds the riscv-arch-test and wally-riscv-arch-test suites
|
||||||
riscof:
|
riscof:
|
||||||
make -C sim
|
$(MAKE) -C sim
|
||||||
|
|
||||||
testfloat:
|
testfloat:
|
||||||
cd ${WALLY}/addins/SoftFloat-3e/build/Linux-x86_64-GCC; make
|
$(MAKE) -C ${WALLY}/addins/SoftFloat-3e/build/Linux-x86_64-GCC
|
||||||
cd ${WALLY}/addins/TestFloat-3e/build/Linux-x86_64-GCC; make
|
$(MAKE) -C ${WALLY}/addins/TestFloat-3e/build/Linux-x86_64-GCC
|
||||||
cd ${WALLY}/tests/fp; ./create_all_vectors.sh
|
cd ${WALLY}/tests/fp && ./create_all_vectors.sh
|
||||||
|
|
||||||
zsbl:
|
zsbl:
|
||||||
$(MAKE) -C ${WALLY}/fpga/zsbl
|
$(MAKE) -C ${WALLY}/fpga/zsbl
|
||||||
|
|
||||||
verify:
|
|
||||||
cd ${SIM}; ./regression-wally
|
|
||||||
cd ${SIM}/sim; ./sim-testfloat-batch all
|
|
||||||
make imperasdv
|
|
||||||
|
|
||||||
benchmarks:
|
benchmarks:
|
||||||
make coremark
|
$(MAKE) coremark
|
||||||
make embench
|
$(MAKE) embench
|
||||||
|
|
||||||
coremark:
|
coremark:
|
||||||
cd ${WALLY}/benchmarks/coremark; make; make run
|
cd ${WALLY}/benchmarks/coremark; $(MAKE); #$(MAKE) run
|
||||||
|
|
||||||
embench:
|
embench:
|
||||||
cd ${WALLY}/benchmarks/embench; make; make run
|
cd ${WALLY}/benchmarks/embench; $(MAKE); #$(MAKE) run
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
make -C tests/coverage
|
$(MAKE) -C tests/coverage
|
||||||
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
make clean -C sim
|
$(MAKE) clean -C sim
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user