From f43b92103aa2cb2a3a71056dd73e6558e80e97af Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 7 Nov 2022 15:26:35 +0100 Subject: [PATCH] build/sim/core/Makefile: Add -Wno-COMBDLY and -Wno-CASEINCOMPLETE flags to disable more these warnings (thanks @suarezvictor). --- litex/build/sim/core/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litex/build/sim/core/Makefile b/litex/build/sim/core/Makefile index 585ef6e03..e662f27fe 100644 --- a/litex/build/sim/core/Makefile +++ b/litex/build/sim/core/Makefile @@ -52,6 +52,8 @@ sim: $(OBJS_SIM) | mkdir $(INC_DIR) \ -Wno-BLKANDNBLK \ -Wno-WIDTH \ + -Wno-COMBDLY \ + -Wno-CASEINCOMPLETE \ --relative-includes make -j$(JOBS) -C $(OBJ_DIR) -f Vsim.mk Vsim