Verilog front-end: define `BLACKBOX in -lib mode
This commit is contained in:
parent
49ef830464
commit
7ff802e199
1 changed files with 2 additions and 1 deletions
|
@ -108,7 +108,7 @@ struct VerilogFrontend : public Frontend {
|
|||
log(" do not run the pre-processor\n");
|
||||
log("\n");
|
||||
log(" -lib\n");
|
||||
log(" only create empty blackbox modules\n");
|
||||
log(" only create empty blackbox modules. This implies -DBLACKBOX.\n");
|
||||
log("\n");
|
||||
log(" -noopt\n");
|
||||
log(" don't perform basic optimizations (such as const folding) in the\n");
|
||||
|
@ -227,6 +227,7 @@ struct VerilogFrontend : public Frontend {
|
|||
}
|
||||
if (arg == "-lib") {
|
||||
flag_lib = true;
|
||||
defines_map["BLACKBOX"] = string();
|
||||
continue;
|
||||
}
|
||||
if (arg == "-noopt") {
|
||||
|
|
Loading…
Add table
Reference in a new issue