mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 14:13:23 +00:00
Replace -ignore_redef with -[no]overwrite
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
e060375f23
commit
a572b49538
5 changed files with 58 additions and 21 deletions
|
@ -933,7 +933,7 @@ struct TechmapPass : public Pass {
|
|||
log(" -D <define>, -I <incdir>\n");
|
||||
log(" this options are passed as-is to the Verilog frontend for loading the\n");
|
||||
log(" map file. Note that the Verilog frontend is also called with the\n");
|
||||
log(" '-ignore_redef' option set.\n");
|
||||
log(" '-nooverwrite' option set.\n");
|
||||
log("\n");
|
||||
log("When a module in the map file has the 'techmap_celltype' attribute set, it will\n");
|
||||
log("match cells with a type that match the text value of this attribute. Otherwise\n");
|
||||
|
@ -1031,7 +1031,7 @@ struct TechmapPass : public Pass {
|
|||
simplemap_get_mappers(worker.simplemap_mappers);
|
||||
|
||||
std::vector<std::string> map_files;
|
||||
std::string verilog_frontend = "verilog -ignore_redef";
|
||||
std::string verilog_frontend = "verilog -nooverwrite";
|
||||
int max_iter = -1;
|
||||
|
||||
size_t argidx;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue