MIPS/resources/soft/perf_func/bench/stream_copy/Makefile
Paul Pan 7b33e4213a a big update
1. add test soft
2. modify verilator (TODO: crossbar need to replace)
3. fix CP0: now CU0 is always 1
4. Controller: cacheop
5. Controller: fix TEN
6. mycpu_top fix CP0_i
7. fix AXI.sv
8. fix AXIReader.sv
9. fix AXIWriter.sv: getting the correct data and length
10. MU: fix cache writeback, fix mem data mux, fix writer address, fix read request
2022-07-29 18:25:58 +08:00

14 lines
414 B
Makefile

CFLAGS = -O3 -mno-abicalls -funroll-all-loops -falign-jumps=16 -falign-functions=16 -fgcse-sm -fgcse-las -finline-functions -finline-limit=1000 -msoft-float -EL -march=mips1 -mips1
CFLAGS += -G8 -DTIME
CFLAGS += -I . -I ../../include -include stdio.h
all: $(patsubst %.c, %.o, $(wildcard *.c))
$(CROSS_COMPILE)ar -cr stream_copy.a $^
%.o: %.c
$(CROSS_COMPILE)gcc $(CFLAGS) -c $<
clean:
rm -f *.o
rm -f *.a