class Verilator < Formula desc "Verilog simulator" homepage "https://www.veripool.org/wiki/verilator" url "https://www.veripool.org/ftp/verilator-4.024.tgz" sha256 "dab91beaa85293564cf0a931f847f7a6cd4ff30b0c11edd1957a9ab1db57b25a" bottle do sha256 "7b75bff1f5796bfddae139d2fef7df2912f236e8f08b73f102e51ddb6d72434d" => :catalina sha256 "7ec220a2d6111e90e9efca465b5409515b7c4ba4de017c96862bdbe1653bbf00" => :mojave sha256 "8cd3e99f67df9ca8a4d1658672af3b8d3aa3ba7fec92cff3b121000bf6dd0160" => :high_sierra end head do url "https://git.veripool.org/git/verilator", :using => :git depends_on "autoconf" => :build depends_on "automake" => :build end skip_clean "bin" # Allows perl scripts to keep their executable flag def install system "autoconf" if build.head? system "./configure", "--prefix=#{prefix}" # `make` and `make install` need to be separate for parallel builds system "make" system "make", "install" end test do (testpath/"test.v").write <<~EOS module test; initial begin $display("Hello World"); $finish; end endmodule EOS (testpath/"test.cpp").write <<~EOS #include "Vtest.h" #include "verilated.h" int main(int argc, char **argv, char **env) { Verilated::commandArgs(argc, argv); Vtest* top = new Vtest; while (!Verilated::gotFinish()) { top->eval(); } delete top; exit(0); } EOS system "/usr/bin/perl", bin/"verilator", "-Wall", "--cc", "test.v", "--exe", "test.cpp" cd "obj_dir" do system "make", "-j", "-f", "Vtest.mk", "Vtest" expected = <<~EOS Hello World - test.v:2: Verilog $finish EOS assert_equal expected, shell_output("./Vtest") end end end