2024-03-24 19:16:24 +01:00
|
|
|
TARGET := coremark
|
|
|
|
ISA?=imc
|
2024-03-25 10:56:34 +01:00
|
|
|
ITERATIONS?=600 # 300 for TGC
|
2024-03-24 19:16:24 +01:00
|
|
|
|
|
|
|
ASM_SRCS :=
|
|
|
|
C_SRCS := core_list_join.c core_main.c core_matrix.c core_state.c core_util.c core_portme.c ee_printf.c
|
|
|
|
HEADERS := cm/coremark.h
|
|
|
|
|
|
|
|
vpath %.c cm
|
|
|
|
|
|
|
|
BOARD?=iss
|
|
|
|
LINK_TARGET=link
|
2024-03-24 21:10:19 +01:00
|
|
|
|
2024-03-24 19:16:24 +01:00
|
|
|
RISCV_ARCH:=rv32$(ISA)
|
|
|
|
ifeq ($(ISA),e)
|
|
|
|
RISCV_ABI:=ilp32e
|
|
|
|
else
|
|
|
|
RISCV_ABI:=ilp32
|
|
|
|
endif
|
|
|
|
|
|
|
|
PORT_CFLAGS = -DPERFORMANCE_RUN=1 -DCLOCKS_PER_SEC=10000000 -Wno-pointer-to-int-cast -Wno-int-to-pointer-cast
|
|
|
|
PORT_CFLAGS+= -g -O3 -fno-common -funroll-loops -finline-functions -falign-functions=16 -falign-jumps=4 -falign-loops=4 -finline-limit=1000 -fno-if-conversion2 -fselective-scheduling -fno-crossjumping -freorder-blocks-and-partition
|
|
|
|
|
|
|
|
FLAGS_STR = "$(PORT_CFLAGS) $(XCFLAGS) $(XLFLAGS) $(LFLAGS_END)"
|
|
|
|
|
|
|
|
CFLAGS = $(PORT_CFLAGS) -I. -Icm -DFLAGS_STR=\"$(FLAGS_STR)\"
|
|
|
|
CFLAGS += -DITERATIONS=$(ITERATIONS)
|
|
|
|
LDFLAGS := -g -Wl,--wrap=scanf -Wl,--wrap=printf -Wl,--wrap=exit -lgcc -lm
|
|
|
|
|
|
|
|
TOOL_DIR=$(dir $(compiler))
|
|
|
|
|
|
|
|
BSP_BASE = ../../bare-metal-bsp
|
|
|
|
include $(BSP_BASE)/env/common-gcc.mk
|