mirror of
https://github.com/YosysHQ/yosys
synced 2026-06-07 09:30:55 +00:00
Remove EMSCRIPTEN leftovers
This commit is contained in:
parent
d4ac3b1e7d
commit
102f008194
5 changed files with 4 additions and 89 deletions
|
|
@ -158,7 +158,6 @@ struct ExecPass : public Pass {
|
|||
int status = 0;
|
||||
int retval = 0;
|
||||
|
||||
#ifndef EMSCRIPTEN
|
||||
FILE *f = popen(cmd.c_str(), "r");
|
||||
if (f == nullptr)
|
||||
log_cmd_error("errno %d after popen() returned NULL.\n", errno);
|
||||
|
|
@ -183,7 +182,6 @@ struct ExecPass : public Pass {
|
|||
}
|
||||
}
|
||||
status = pclose(f);
|
||||
#endif
|
||||
|
||||
if(WIFEXITED(status)) {
|
||||
retval = WEXITSTATUS(status);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue