当前位置: 技术问答>linux和unix
问一个g++的编译错误?
来源: 互联网 发布时间:2017-04-24
本文导语: 我编译时遇到了如下的错误提示: In file included from /usr/include/c++/4.4/cstdint:35, from iod_init.h:13: /usr/include/c++/4.4/c++0x_warning.h:31:2: error: #error This file requires compiler and library support for the upcoming ISO C++ sta...
我编译时遇到了如下的错误提示:
In file included from /usr/include/c++/4.4/cstdint:35,
from iod_init.h:13:
/usr/include/c++/4.4/c++0x_warning.h:31:2: error:
#error This file requires compiler and library support for the upcoming ISO C++ standard, C++0x. This support is currently experimental, and must be enabled with the -std=c++0x or -std=gnu++0x compiler options.
因为我在源代码中使用了int64_t类型。
查看了一下头问发现:
这里出的编译错误。
但是我在头文件中已经
请问为什么还是有问题呢?
谢谢!
In file included from /usr/include/c++/4.4/cstdint:35,
from iod_init.h:13:
/usr/include/c++/4.4/c++0x_warning.h:31:2: error:
#error This file requires compiler and library support for the upcoming ISO C++ standard, C++0x. This support is currently experimental, and must be enabled with the -std=c++0x or -std=gnu++0x compiler options.
因为我在源代码中使用了int64_t类型。
查看了一下头问发现:
** @file include/c++0x_warning.h
* This is a Standard C++ Library header.
*/
#ifndef _CXX0X_WARNING_H
#define _CXX0X_WARNING_H 1
#ifndef __GXX_EXPERIMENTAL_CXX0X__
#error This file requires compiler and library support for the upcoming
ISO C++ standard, C++0x. This support is currently experimental, and must be
enabled with the -std=c++0x or -std=gnu++0x compiler options.
#endif
#endif
这里出的编译错误。
但是我在头文件中已经
#define __GXX_EXPERIMENTAL_CXX0X__
#include
#include
#include
#include
请问为什么还是有问题呢?
谢谢!
|
setting->compiler and debugger setting --> compiler settings -->other options
填入提示的那个选项试试
填入提示的那个选项试试
|
工程上右键,选择build options,在compiler settings里面,有列表,
选择c++0x支持。
选择c++0x支持。
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。