This commit is contained in:
Dhaval 2026-07-23 23:58:50 -07:00 committed by GitHub
commit bc90f49dc0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

View File

@ -3759,6 +3759,14 @@ struct VerificPass : public Pass {
break;
}
#ifdef VERIFIC_VHDL_SUPPORT
if (GetSize(args) > argidx && args[argidx] == "-set_vhdl_default_library_path") {
for (argidx++; argidx < GetSize(args); argidx++)
vhdl_file::SetDefaultLibraryPath(args[argidx].c_str());
goto check_error;
}
#endif
#ifdef VERIFIC_SYSTEMVERILOG_SUPPORT
if (GetSize(args) > argidx && (args[argidx] == "-f" || args[argidx] == "-F"))
{