mirror of
https://github.com/YosysHQ/yosys
synced 2026-06-28 19:48:50 +00:00
verific: add support for relaxed file library extensions in VerificPass
This commit is contained in:
parent
8101c87fab
commit
d1d80e044c
1 changed files with 11 additions and 0 deletions
|
|
@ -3688,6 +3688,17 @@ struct VerificPass : public Pass {
|
||||||
veri_file::AddLOption(args[++argidx].c_str());
|
veri_file::AddLOption(args[++argidx].c_str());
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (args[argidx] == "-set_relaxed_file_libext_modes") {
|
||||||
|
veri_file::AddLibExt(".v");
|
||||||
|
veri_file::AddLibExt(".vh");
|
||||||
|
veri_file::AddLibExt(".sv");
|
||||||
|
veri_file::AddLibExt(".sv1");
|
||||||
|
veri_file::AddLibExt(".svh");
|
||||||
|
veri_file::AddLibExt(".svp");
|
||||||
|
veri_file::AddLibExt(".h");
|
||||||
|
veri_file::AddLibExt(".inc");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue