From 22be51b0c861687222003ea989fd1637d399515e Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Sat, 28 Mar 2020 01:40:26 -0400 Subject: [PATCH] fixed multicore build --- rtl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/Makefile b/rtl/Makefile index 348bdb62..d3ae30f5 100644 --- a/rtl/Makefile +++ b/rtl/Makefile @@ -48,7 +48,7 @@ VERILATORnoWarningsRel: build_config verilator $(VF) -cc $(SINGLE_CORE) $(INCLUDE) $(EXE) $(LIB) -CFLAGS '$(CF) -O3 -DVL_THREADED' $(WNO) --threads $(THREADS) VERILATORMULTInoWarnings: build_config - verilator $(VF) -cc $(MULTI_CORE) $(INCLUDE) $(MULTI_EXE) $(LIB) -CFLAGS '$(CF) -O3 -DVL_THREADED' $(WNO) $(DEB) --threads $(THREADS) + verilator $(VF) -cc $(MULTI_CORE) $(INCLUDE) $(MULTI_EXE) $(LIB) -CFLAGS '$(CF)' $(WNO) $(DEB) compdebug: build_config verilator_bin_dbg $(VF) -cc $(SINGLE_CORE) $(INCLUDE) $(EXE) $(LIB) -CFLAGS '$(CF) -DVCD_OUTPUT -DVL_DEBUG' $(WNO) $(DEB)