From 3be114671877141c0f409d267416ecc242e62921 Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 17 Jan 2022 11:40:11 +0000 Subject: [PATCH] refine define file build --- demo/helloworld/Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/demo/helloworld/Makefile b/demo/helloworld/Makefile index b89e7a5..c1901a9 100644 --- a/demo/helloworld/Makefile +++ b/demo/helloworld/Makefile @@ -6,9 +6,6 @@ GCC_PREFIX = /opt/riscv/bin/riscv64-unknown-elf TEST_CFLAGS = -g -O3 -funroll-all-loops ABI = -mabi=ilp32 -march=rv32imc -# Allow snapshot override -target = default - # Allow tool override VERILATOR = verilator TESTDIR = ${PWD} @@ -48,7 +45,7 @@ clean: # If define files do not exist, then run swerv.config. ${BUILD_DIR}/defines.h : - BUILD_PATH=${BUILD_DIR} ${SWERV_CONFIG} -target=$(target) -set iccm_enable + BUILD_PATH=${BUILD_DIR} ${SWERV_CONFIG} -target=default -set iccm_enable ##################### Verilog Builds #####################################