From f132012de18932db9a14dce667891d7874336ccc Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 10 Jan 2019 16:03:09 +0100 Subject: [PATCH] build/sim: disable Warning-WIDTH --- litex/build/sim/core/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/litex/build/sim/core/Makefile b/litex/build/sim/core/Makefile index 3a6121247..a96049295 100644 --- a/litex/build/sim/core/Makefile +++ b/litex/build/sim/core/Makefile @@ -34,7 +34,8 @@ sim: mkdir $(OBJS_SIM) -LDFLAGS "$(LDFLAGS)" \ --trace \ $(if $(COVERAGE), --coverage,) \ - $(INC_DIR) + $(INC_DIR) \ + -Wno-WIDTH make -j -C $(OBJ_DIR) -f Vdut.mk Vdut .PHONY: modules