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 attempting to build the library with Apple Clang, the build fails with the following error:
/Users/alecto/3rd/eigen/Eigen/src/Core/util/Macros.h:709:2: error: Eigen requires at least c++14 support.
#error Eigen requires at least c++14 support.
^
Current versions of gcc and llvm clang use C++17 by default, so CMake doesn't bother to pass the -std=c++11 flag, which is likely why this wasn't caught previously.
The text was updated successfully, but these errors were encountered:
codeinred
added a commit
to codeinred/Clarabel.cpp
that referenced
this issue
Jun 6, 2024
When attempting to build the library with Apple Clang, the build fails with the following error:
Current versions of gcc and llvm clang use C++17 by default, so CMake doesn't bother to pass the
-std=c++11
flag, which is likely why this wasn't caught previously.The text was updated successfully, but these errors were encountered: