3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-06-07 09:30:55 +00:00

Remove EMSCRIPTEN leftovers

This commit is contained in:
Miodrag Milanovic 2026-06-05 10:03:27 +02:00
parent d4ac3b1e7d
commit 102f008194
5 changed files with 4 additions and 89 deletions

View file

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