判断交叉编译工具是否支持C++20的标准

发布时间:2024年01月16日

写个任意的测试程序hello_world

执行

arm-linux-gnueabihf-g++  -std=c++14 main.cpp
arm-linux-gnueabihf-g++  -std=c++17 main.cpp
arm-linux-gnueabihf-g++  -std=c++20 main.cpp


没报错则代表支持,报错则不支持.
在这里插入图片描述

文章来源:https://blog.csdn.net/PHILICS7/article/details/135619632
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。