From 75ad033e03033deecf2e0d62cb863ac0e0b0e825 Mon Sep 17 00:00:00 2001 From: Michael Cardell Widerkrantz Date: Fri, 7 Feb 2025 11:27:37 +0100 Subject: [PATCH] build: Add -Wno-GENUNNAMED to LINT_FLAGS For ages we have had a comment saying: For Verilator 5.019 -Wno-GENUNNAMED needs to be added to LINT_FLAGS for the cell library. With the new tkey-builder we have 5.028, so it's time to apply this flag. --- hw/application_fpga/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/application_fpga/Makefile b/hw/application_fpga/Makefile index dec6df3..0dc7af1 100644 --- a/hw/application_fpga/Makefile +++ b/hw/application_fpga/Makefile @@ -261,7 +261,8 @@ LINT_FLAGS = \ -Wno-WIDTHEXPAND \ -Wno-UNOPTFLAT \ --timescale 1ns/1ns \ - -DNO_ICE40_DEFAULT_ASSIGNMENTS + -DNO_ICE40_DEFAULT_ASSIGNMENTS \ + -Wno-GENUNNAMED lint: $(FPGA_VERILOG_SRCS) \ $(SIM_VERILOG_SRCS) \