lsils / mockturtle

C++ logic network library
MIT License
191 stars 133 forks source link

Fixed compilation issues on MSVC compilers #612

Closed marcelwa closed 1 year ago

marcelwa commented 1 year ago

When compiling experiments that use the abc_cec_impl function under any MSVC compiler, the compilation fails. That is because the function uses the symbols popen and pclose, which do not exist in MSVC. Here, they are called _popen and _pclose.

This PR fixes this issue.

lee30sonia commented 1 year ago

Thanks!