I'm unfamiliar with C++, but something that I am trying to build requires the C++ version to be C++ 20 (it uses some features that only cpp 20 has apparently). I believe my current version is lower than that (C++ 17 or something along that line). How can I update my version of C++ to the newest version? I am on Ubuntu 18.04.3 LTS.
Asked
Active
Viewed 51 times
-std=c++2a
option. You can install g++-10 on 18.04 from the toolchain-r PPA. – steeldriver Nov 06 '20 at 12:50