3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-13 09:26:16 +00:00

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

View file

@ -625,10 +625,10 @@ static void abc_module(RTLIL::Design *design, RTLIL::Module *current_module, std
std::string buffer; std::string buffer;
if (!liberty_file.empty()) { 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()); exe_file.c_str(), tempdir_name, liberty_file.c_str());
if (!constr_file.empty()) 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 + "; "; buffer += abc_command + "; ";
} else } else
if (lut_mode) if (lut_mode)