我正在尝试使用启用了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无法识别该选项。
我该如何解决?