+ Microarchitecture optimizations + 64-bit support + Xilinx FPGA support + LLVM-16 support + Refactoring and quality control fixes minor update minor update minor update minor update minor update minor update cleanup cleanup cache bindings and memory perf refactory minor update minor update hw unit tests fixes minor update minor update minor update minor update minor update minor udpate minor update minor update minor update minor update minor update minor update minor update minor updates minor updates minor update minor update minor update minor update minor update minor update minor updates minor updates minor updates minor updates minor update minor update
16 lines
488 B
Makefile
16 lines
488 B
Makefile
all: fpnew softfloat ramulator
|
|
|
|
fpnew:
|
|
|
|
softfloat:
|
|
SPECIALIZE_TYPE=RISCV SOFTFLOAT_OPTS="-fPIC -DSOFTFLOAT_ROUND_ODD -DINLINE_LEVEL=5 -DSOFTFLOAT_FAST_DIV32TO16 -DSOFTFLOAT_FAST_DIV64TO32" $(MAKE) -C softfloat/build/Linux-x86_64-GCC
|
|
|
|
ramulator:
|
|
cd ramulator && git apply ../../miscs/patch/ramulator.patch 2> /dev/null; true
|
|
$(MAKE) -C ramulator libramulator.a
|
|
|
|
clean:
|
|
$(MAKE) -C softfloat/build/Linux-x86_64-GCC clean
|
|
$(MAKE) -C ramulator clean
|
|
|
|
.PHONY: all fpnew softfloat ramulator |