gccmakedep错误:#error此文件需要ISO C ++ 2011标准的编译器和库支持

时间:2020-08-29 21:15:55

标签: gcc g++ g++-5

我正在尝试使用启用了c ++ 11的gcc 5构建程序。

我的makefile调用gccmakedep,然后抱怨缺少c ++ 11支持:

 error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options. #error This file requires compiler and library support \

我修改了makefile中的行以设置所需的选项:

gccmakedep -- -std=gnu++11 -- $(SRCS)

它不起作用。我犯了同样的错误。我认为gccmakedep无法识别该选项。

我该如何解决?

0 个答案:

没有答案