Verbose reading of liberty and constr files in ABC pass

This commit is contained in:
Clifford Wolf 2014-03-09 15:15:38 +01:00
parent e3b11ea2d6
commit 22aabe05c9
1 changed files with 2 additions and 2 deletions

View File

@ -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)