mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-23 02:19:47 +00:00
Fix liberty cache warning with -genlib.
This commit is contained in:
parent
5197b9c8ce
commit
d2f7fecef5
2 changed files with 2 additions and 2 deletions
|
|
@ -186,7 +186,7 @@ void abc9_module(RTLIL::Design *design, std::string script_file, std::string exe
|
|||
std::string merged_scl = convert_liberty_files_to_merged_scl(liberty_files, dont_use_args, exe_file);
|
||||
if (!merged_scl.empty()) {
|
||||
abc9_script += stringf("read_scl \"%s\" ; ", merged_scl.c_str());
|
||||
} else {
|
||||
} else if(!liberty_files.empty()) {
|
||||
log_warning("ABC: Merged scl conversion failed, using liberty format\n");
|
||||
bool first_lib = true;
|
||||
for (std::string liberty_file : liberty_files) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue