d:\qt\qt5.2.1\tools\mingw48_32\lib\gcc\i686-w64-mingw32\4.8.0\include\c++\bits\c++0x_warning.h:32: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support is currently experimental, and must be enabled with the -std=c++11 or -std=gnu++11 compiler options. #error This file requires compiler and library support for the \ ^
时间: 2023-07-21 16:21:35 浏览: 187
这是一个编译错误,说明你在使用C++11标准的一些特性,但编译器没有开启C++11支持。你需要在编译选项中加入"-std=c++11"或"-std=gnu++11"选项来启用C++11支持。例如,在使用g++编译时,可以这样使用:g++ -std=c++11 your_file.cpp。另外,你的编译器版本也需要支持C++11标准。
相关问题
我的QT5.2.1创建项目时默认Debug路径为D:\QT5.2.1\Tools\QtCreator\bin\PROJECT\%{JS: Util.asciify("build-untitled2-Desktop_Qt_5_2_1_MinGW_32bit-Debug")},但是因为这路径中的正则导致我无法构建项目,我该如何修改软件设置使得QT在创建项目时不再有这默认的正则
您可以在Qt Creator的设置中更改默认的构建路径。具体步骤如下:
1. 打开Qt Creator并进入“工具”菜单。
2. 选择“选项”。
3. 在“构建和运行”选项卡下,选择“构建”子选项卡。
4. 在“构建目录”下拉菜单中选择“自定义”。
5. 在路径编辑框中输入您希望的构建路径。
6. 单击“应用”按钮并关闭“选项”对话框。
这样,在创建新项目时,Qt Creator将使用您指定的构建路径而不是默认的路径。如果您希望在某个特定项目中使用不同的构建路径,您可以在该项目的“构建设置”中进行更改。
阅读全文