summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruvok2025-12-29 16:11:33 +0100
committeruvok2025-12-29 16:11:33 +0100
commitceb4aa8e0662206789016306a5a8745cbafcbd4f (patch)
treef424fc164ac106dfb0b16ad47ba2ed2bbc744a8e
parent73eedafc7ebd1b52e960aa6081e6ff8c4d250569 (diff)
make: make verilator quiet
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f6aa04b..eb4248e 100644
--- a/Makefile
+++ b/Makefile
@@ -57,7 +57,7 @@ simu2: verilator.$(PROGRAM)/dump.vvp
gtkwave $<
lint: $(PROGRAM).v
- verilator --lint-only -Wall -Wno-PROCASSINIT $(PROGRAM).v
+ verilator --quiet --lint-only -Wall -Wno-PROCASSINIT $(PROGRAM).v
## Patterns
@@ -103,7 +103,7 @@ lint: $(PROGRAM).v
# also on warnings "boohoo, you specified timings in some modules and not in others"
# since this is fucking annoying, I choose to ignore the exit code.
verilator.%: %.v %.tb.v
- verilator -DDUMP_FILE_NAME='"dump.vvp"' --trace --timing --main --exe --Mdir verilator.$(PROGRAM) $(PROGRAM).tb.v || true
+ verilator --quiet -DDUMP_FILE_NAME='"dump.vvp"' --trace --timing --main --exe --Mdir verilator.$(PROGRAM) $(PROGRAM).tb.v || true
# need to specify RM for some reason
# verilators makefiles doesn't specify the variable