diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-03-09 15:15:38 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-03-09 15:15:38 +0100 |
commit | 22aabe05c9dcb7a7f5c16988fc98a43e55b52beb (patch) | |
tree | 3d8a1df9edb7fab9ddfcd442c2d8b4ac7d41e17b /passes | |
parent | e3b11ea2d64724102070f96e667c4dea07c0c3e5 (diff) | |
download | yosys-22aabe05c9dcb7a7f5c16988fc98a43e55b52beb.tar.gz yosys-22aabe05c9dcb7a7f5c16988fc98a43e55b52beb.tar.bz2 yosys-22aabe05c9dcb7a7f5c16988fc98a43e55b52beb.zip |
Verbose reading of liberty and constr files in ABC pass
Diffstat (limited to 'passes')
-rw-r--r-- | passes/abc/abc.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/abc/abc.cc b/passes/abc/abc.cc index bd0d983ac..2829e660f 100644 --- a/passes/abc/abc.cc +++ b/passes/abc/abc.cc @@ -625,10 +625,10 @@ static void abc_module(RTLIL::Design *design, RTLIL::Module *current_module, std std::string buffer; if (!liberty_file.empty()) { - buffer += stringf("%s -s -c 'read_blif %s/input.blif; read_lib %s; ", + buffer += stringf("%s -s -c 'read_blif %s/input.blif; read_lib -w %s; ", exe_file.c_str(), tempdir_name, liberty_file.c_str()); if (!constr_file.empty()) - buffer += stringf("read_constr %s; ", constr_file.c_str()); + buffer += stringf("read_constr -v %s; ", constr_file.c_str()); buffer += abc_command + "; "; } else if (lut_mode) |