--inhibit-sim is planned for deprecation, file a bug if this is still being used.

This commit is contained in:
Wilson Snyder 2021-02-28 09:26:06 -05:00
parent 05e5fb04ed
commit fec5e69ec5
3 changed files with 7 additions and 0 deletions

View File

@ -4,6 +4,8 @@ The contributors that suggested a given feature are shown in []. Thanks!
* Verilator 4.111 devel
**** --inhibit-sim is planned for deprecation, file a bug if this is still being used.
* Verilator 4.110 2021-02-25

View File

@ -5127,6 +5127,10 @@ Verilator currently requires C++11 or newer compilers. Verilator will
require C++14 or newer compilers for both compiling Verilator and compiling
Verilated models no sooner than January 2022.
=item --inhibit-sim
The --inhibit-sim option is planned for removal no sooner than July 2021.
=item Configuration File -msg
The -msg argument to lint_off has been replaced with -rule. -msg is

View File

@ -1045,6 +1045,7 @@ void V3Options::parseOptsList(FileLine* fl, const string& optdir, int argc, char
} else if (onoff(sw, "-ignc", flag /*ref*/)) {
m_ignc = flag;
} else if (onoff(sw, "-inhibit-sim", flag /*ref*/)) {
fl->v3warn(DEPRECATED, "-inhibit-sim option is deprecated");
m_inhibitSim = flag;
} else if (onoff(sw, "-lint-only", flag /*ref*/)) {
m_lintOnly = flag;