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
std::optional is used in a few places, which is a C++17 feature. This results in a build failure for me with the build.sh, as the gcc shipped by Debian defaults to C++14.
OS: Debian 11
Compiler: gcc/g++ (Debian 10.2.1-6) 10.2.1 20210110
std::optional is used in a few places, which is a C++17 feature. This results in a build failure for me with the
build.sh
, as the gcc shipped by Debian defaults to C++14.Issue is likely resolvable by simply explicitly having an
-std=c++17
flag? Maybe also useful: https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_17.htmlThe text was updated successfully, but these errors were encountered: