summaryrefslogtreecommitdiff
path: root/passes
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-03-09 15:15:38 +0100
committerClifford Wolf <clifford@clifford.at>2014-03-09 15:15:38 +0100
commit22aabe05c9dcb7a7f5c16988fc98a43e55b52beb (patch)
tree3d8a1df9edb7fab9ddfcd442c2d8b4ac7d41e17b /passes
parente3b11ea2d64724102070f96e667c4dea07c0c3e5 (diff)
Verbose reading of liberty and constr files in ABC pass
Diffstat (limited to 'passes')
-rw-r--r--passes/abc/abc.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/abc/abc.cc b/passes/abc/abc.cc
index bd0d983a..2829e660 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)