Skip to content

Commit 367cddc

Browse files
committed
opensta: quiet blackbox warning
1 parent 40449bd commit 367cddc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

techlibs/common/opensta.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ struct OpenstaPass : public Pass
101101
f_script.close();
102102
std::string command = opensta_exe + " -exit " + script_filename;
103103
auto process_line = [](const std::string &line) {
104+
if (line.find("Creating black box") != std::string::npos)
105+
return;
104106
if (line.find("does not match net size") != std::string::npos)
105107
return;
106108
log("OpenSTA: %s", line.c_str());

0 commit comments

Comments
 (0)