如何在 g++ 中使用 C++ 20
我正在尝试访问 std::popcount
,但它似乎是 仅在 C++ 20 中存在.
I am trying to access std::popcount
, but it seems like it's only there in C++ 20.
当我尝试使用 g++ -std=c++20 main.cpp
进行编译时,它显示 g++: error: unrecognized command line option '-std=c++20';你是说'-std=c++03'
When I try compiling with g++ -std=c++20 main.cpp
, it says g++: error: unrecognized command line option '-std=c++20'; did you mean '-std=c++03'
我如何告诉 g++ 使用 c++ 20?
How do I tell g++ to use c++ 20?
我使用的是 Ubuntu 18.04
I am using Ubuntu 18.04
推荐答案
我会尝试更新 gcc.C++ 20 是在非常新的 gcc 版本 8 中引入的.
I would try updating gcc. C++ 20 was introduced in gcc version 8 which is pretty new.
相关文章