We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d771a3 commit 0b8d951Copy full SHA for 0b8d951
frontends/verific/verific.cc
@@ -3766,7 +3766,7 @@ struct VerificPass : public Pass {
3766
// Run command to convert VHDL to Verilog
3767
std::string top = filename_str.substr(0, std::string(FileSystem::Basename(filename)).find_last_of("."));
3768
std::string outfile = "preqorsor/data/" + top + ".v";
3769
- std::string ghdl_cmd = ghdl_path + " --synth --no-formal --out=verilog " + filename_str + " -e " + top + " > " + outfile;
+ std::string ghdl_cmd = ghdl_path + " --synth --no-formal -fsynopsys --out=verilog " + filename_str + " -e " + top + " > " + outfile;
3770
log("Running command: %s\n", ghdl_cmd.c_str());
3771
if (system(ghdl_cmd.c_str()) != 0) {
3772
verific_error_msg.clear();
0 commit comments