From fba4119af3d09daeaa4f8cb0beb6c85275f2e2e4 Mon Sep 17 00:00:00 2001 From: Isabell Pflug Date: Mon, 30 May 2022 20:15:20 +0200 Subject: [PATCH] :sparkles: added compile command for System Verilog --- coding/compile_commands.md | 1 + 1 file changed, 1 insertion(+) diff --git a/coding/compile_commands.md b/coding/compile_commands.md index b4491d3..df18333 100644 --- a/coding/compile_commands.md +++ b/coding/compile_commands.md @@ -7,6 +7,7 @@ My preferred compile commands to quickly look up * if necessary, remove `-Wpedantic`, since it warns for features definitely included by using `gnu99` as compiler * **C++** - `g++ -Wall -c blob.cpp blub.cpp` -> `g++ -Wall -o blub blob.o blub.o` * `blob.cpp` gets linked (blub.cpp would likely start with something like `#include "blob.h"`) +* **System Verilog** - `iverilog -Wall -g2012 1.sv 2.sv 3_tb.sv 3.sv -o 3_tb` <- tb for testbench simulation ## Other languages * **LaTeX** - `lualatex blub.tex`