mirror of
https://github.com/verilator/verilator.git
synced 2025-04-06 04:32:39 +00:00
Remove --bin from perl shell, use argv[0] instead
git-svn-id: file://localhost/svn/verilator/trunk/verilator@801 77ca24e4-aefa-0310-84f0-b9a241c72d87
This commit is contained in:
parent
b4d4917c6c
commit
7738b202ac
@ -113,7 +113,6 @@ if ($Opt_Sp eq 'sp' || $Opt_Trace) {
|
|||||||
# Determine runtime flags
|
# Determine runtime flags
|
||||||
my $vcmd =(($opt_gdb?"$opt_gdb ":"")
|
my $vcmd =(($opt_gdb?"$opt_gdb ":"")
|
||||||
.verilator_bin()
|
.verilator_bin()
|
||||||
." --bin ".verilator_bin() # So we get binary name into .d file
|
|
||||||
." ".join(' ',@Opt_Verilator_Sw)
|
." ".join(' ',@Opt_Verilator_Sw)
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -234,6 +233,13 @@ linking with make rules you write yourself.
|
|||||||
Enable all assertions, includes enabling the --psl flag. (If psl is not
|
Enable all assertions, includes enabling the --psl flag. (If psl is not
|
||||||
desired, but other assertions are, use --assert --nopsl.)
|
desired, but other assertions are, use --assert --nopsl.)
|
||||||
|
|
||||||
|
=item --bin I<filename>
|
||||||
|
|
||||||
|
Rarely needed. Override the default filename for Verilator itself. When a
|
||||||
|
dependancy (.d) file is created, this filename will become a source
|
||||||
|
dependency, such that a change in this binary will have make rebuild the
|
||||||
|
output files.
|
||||||
|
|
||||||
=item --cc
|
=item --cc
|
||||||
|
|
||||||
Specifies C++ without SystemC output mode; see also --sc and --sp.
|
Specifies C++ without SystemC output mode; see also --sc and --sp.
|
||||||
@ -303,10 +309,10 @@ Displays this message and program version and exits.
|
|||||||
|
|
||||||
=item --inhibit-sim
|
=item --inhibit-sim
|
||||||
|
|
||||||
Create a "inhibitSim(bool)" function to enable and disable evaluation.
|
Rarely needed. Create a "inhibitSim(bool)" function to enable and disable
|
||||||
This allows a upper level testbench to disable modules that are not
|
evaluation. This allows a upper level testbench to disable modules that
|
||||||
important in a given simulation, without needing to recompile or change the
|
are not important in a given simulation, without needing to recompile or
|
||||||
SystemC modules instantiated.
|
change the SystemC modules instantiated.
|
||||||
|
|
||||||
=item --inline-mult I<value>
|
=item --inline-mult I<value>
|
||||||
|
|
||||||
@ -339,8 +345,8 @@ the same as --prefix.
|
|||||||
|
|
||||||
=item --no-skip-identical
|
=item --no-skip-identical
|
||||||
|
|
||||||
Disables skipping execution of Verilator if all source files are identical,
|
Rarely needed. Disables skipping execution of Verilator if all source
|
||||||
and all output files exist with newer dates.
|
files are identical, and all output files exist with newer dates.
|
||||||
|
|
||||||
=item -O0
|
=item -O0
|
||||||
|
|
||||||
@ -353,11 +359,11 @@ cost of compile time. This currently sets --inline-mult -1.
|
|||||||
|
|
||||||
=item -OI<optimization-letter>
|
=item -OI<optimization-letter>
|
||||||
|
|
||||||
Enables or disables a specific optimizations, with the optimization
|
Rarely needed. Enables or disables a specific optimizations, with the
|
||||||
selected based on the letter passed. A lowercase letter disables an
|
optimization selected based on the letter passed. A lowercase letter
|
||||||
optimization, an upper case letter enables it. This is intended for
|
disables an optimization, an upper case letter enables it. This is
|
||||||
debugging use only; see the source code for version-dependent mappings of
|
intended for debugging use only; see the source code for version-dependent
|
||||||
optimizations to -O letters.
|
mappings of optimizations to -O letters.
|
||||||
|
|
||||||
=item --output-split I<bytes>
|
=item --output-split I<bytes>
|
||||||
|
|
||||||
@ -431,10 +437,10 @@ on during model execution.
|
|||||||
|
|
||||||
=item --underline-zero
|
=item --underline-zero
|
||||||
|
|
||||||
Signals starting with a underline should be initialized to zero, as was
|
Rarely needed. Signals starting with a underline should be initialized to
|
||||||
done in Verilator 2. Default is for all signals including those with
|
zero, as was done in Verilator 2. Default is for all signals including
|
||||||
underlines being randomized. This option may be depreciated in future
|
those with underlines being randomized. This option may be depreciated in
|
||||||
versions.
|
future versions.
|
||||||
|
|
||||||
=item -Werror-I<message>
|
=item -Werror-I<message>
|
||||||
|
|
||||||
|
@ -181,6 +181,7 @@ class V3Options {
|
|||||||
static string version();
|
static string version();
|
||||||
static string argString(int argc, char** argv); ///< Return list of arguments as simple string
|
static string argString(int argc, char** argv); ///< Return list of arguments as simple string
|
||||||
string allArgsString(); ///< Return all passed arguments as simple string
|
string allArgsString(); ///< Return all passed arguments as simple string
|
||||||
|
void bin(const string& flag) { m_bin = flag; }
|
||||||
void parseOpts(FileLine* fl, int argc, char** argv);
|
void parseOpts(FileLine* fl, int argc, char** argv);
|
||||||
void parseOptsList (FileLine* fl, int argc, char** argv);
|
void parseOptsList (FileLine* fl, int argc, char** argv);
|
||||||
void parseOptsFile (FileLine* fl, const string& filename);
|
void parseOptsFile (FileLine* fl, const string& filename);
|
||||||
|
@ -467,9 +467,11 @@ int main(int argc, char** argv, char** env) {
|
|||||||
srand( (int) randseed);
|
srand( (int) randseed);
|
||||||
|
|
||||||
// Preprocessor
|
// Preprocessor
|
||||||
|
// Before command parsing so we can handle -Ds on command line.
|
||||||
V3PreShell::boot(env);
|
V3PreShell::boot(env);
|
||||||
|
|
||||||
// Command option parsing
|
// Command option parsing
|
||||||
|
v3Global.opt.bin(argv[0]);
|
||||||
string argString = V3Options::argString(argc-1, argv+1);
|
string argString = V3Options::argString(argc-1, argv+1);
|
||||||
v3Global.opt.parseOpts(new FileLine("COMMAND_LINE",0), argc-1, argv+1);
|
v3Global.opt.parseOpts(new FileLine("COMMAND_LINE",0), argc-1, argv+1);
|
||||||
if (v3Global.opt.coverage() && !v3Global.opt.systemPerl()) {
|
if (v3Global.opt.coverage() && !v3Global.opt.systemPerl()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user