Skip to content

Commit 0b8d951

Browse files
committed
Add synopsys VHDL libs by default in GHDL
1 parent 2d771a3 commit 0b8d951

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontends/verific/verific.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3766,7 +3766,7 @@ struct VerificPass : public Pass {
37663766
// Run command to convert VHDL to Verilog
37673767
std::string top = filename_str.substr(0, std::string(FileSystem::Basename(filename)).find_last_of("."));
37683768
std::string outfile = "preqorsor/data/" + top + ".v";
3769-
std::string ghdl_cmd = ghdl_path + " --synth --no-formal --out=verilog " + filename_str + " -e " + top + " > " + outfile;
3769+
std::string ghdl_cmd = ghdl_path + " --synth --no-formal -fsynopsys --out=verilog " + filename_str + " -e " + top + " > " + outfile;
37703770
log("Running command: %s\n", ghdl_cmd.c_str());
37713771
if (system(ghdl_cmd.c_str()) != 0) {
37723772
verific_error_msg.clear();

0 commit comments

Comments
 (0)