You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling Yosys, the process would crash due to errors regarding not including certain header files, I'm assuming used by newer compilers or something?
Some errors:
passes/sat/freduce.cc:531:27: error: no member named 'numeric_limits' in namespace 'std'
out_depth[idx] = std::numeric_limits::max();
~~~~~^
passes/sat/freduce.cc:531:45: error: expected '(' for function-style cast or type construction
out_depth[idx] = std::numeric_limits::max();
~~~^
passes/sat/freduce.cc:531:46: error: no matching function for call to 'max'
out_depth[idx] = std::numeric_limits::max();
On WSL w/ Ubuntu 20.04, GCC11, Clang13
TLDR is yosys (and prob everything else) needs to be updated from not 3yrs ago
The text was updated successfully, but these errors were encountered:
When compiling Yosys, the process would crash due to errors regarding not including certain header files, I'm assuming used by newer compilers or something?
Some errors:
TLDR is yosys (and prob everything else) needs to be updated from not 3yrs ago
The text was updated successfully, but these errors were encountered: