查看gcc/g++版本以及对应默认的的C++标准

Posted on 2023-05-25 11:31  Frank_Jin  阅读(1060)  评论(0编辑  收藏  举报

通过如下命令查看_cplusplus的值:

g++ -dM -E -x c++  /dev/null | grep -F __cplusplus

对应查表

C++标准 _cplusplus
C++11 201103L
C++14 201402L
C++17 201703L