2016-06-14 129 views
0

我试图根据https://chromium.googlesource.com/breakpad/breakpad/的文档构建breakpad库,但是当我执行./configure && make, 时检查C++ 11时出现错误,即使我目前能够编译与C++ 11。尝试构建库时出错

这里是从./configure输出:

checking build system type... x86_64-pc-linux-gnu 
checking host system type... x86_64-pc-linux-gnu 
checking for a BSD-compatible install... /usr/bin/install -c 
checking whether build environment is sane... yes 
checking for a thread-safe mkdir -p... /bin/mkdir -p 
checking for gawk... no 
checking for mawk... mawk 
checking whether make sets $(MAKE)... yes 
checking whether make supports nested variables... yes 
checking whether UID '0' is supported by ustar format... yes 
checking whether GID '0' is supported by ustar format... yes 
checking how to create a ustar tar archive... gnutar 
checking whether to enable maintainer-specific portions of Makefiles... no 
checking for style of include used by make... GNU 
checking for gcc... gcc 
checking whether the C compiler works... yes 
checking for C compiler default output file name... a.out 
checking for suffix of executables... 
checking whether we are cross compiling... no 
checking for suffix of object files... o 
checking whether we are using the GNU C compiler... yes 
checking whether gcc accepts -g... yes 
checking for gcc option to accept ISO C89... none needed 
checking whether gcc understands -c and -o together... yes 
checking dependency style of gcc... gcc3 
checking for ar... ar 
checking the archiver (ar) interface... ar 
checking dependency style of gcc... gcc3 
checking for gcc... (cached) gcc 
checking whether we are using the GNU C compiler... (cached) yes 
checking whether gcc accepts -g... (cached) yes 
checking for gcc option to accept ISO C89... (cached) none needed 
checking whether gcc understands -c and -o together... (cached) yes 
checking dependency style of gcc... (cached) gcc3 
checking how to run the C preprocessor... gcc -E 
checking for g++... g++ 
checking whether we are using the GNU C++ compiler... yes 
checking whether g++ accepts -g... yes 
checking dependency style of g++... gcc3 
checking for ranlib... ranlib 
checking for grep that handles long lines and -e... /bin/grep 
checking for egrep... /bin/grep -E 
checking for ANSI C header files... yes 
checking for special C compiler options needed for large files... no 
checking for _FILE_OFFSET_BITS value needed for large files... no 
checking for the pthreads library -lpthreads... no 
checking whether pthreads work without any flags... no 
checking whether pthreads work with -Kthread... no 
checking whether pthreads work with -kthread... no 
checking for the pthreads library -llthread... no 
checking whether pthreads work with -pthread... yes 
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE 
checking if more special flags are required for pthreads... no 
checking for sys/types.h... yes 
checking for sys/stat.h... yes 
checking for stdlib.h... yes 
checking for string.h... yes 
checking for memory.h... yes 
checking for strings.h... yes 
checking for inttypes.h... yes 
checking for stdint.h... yes 
checking for unistd.h... yes 
checking a.out.h usability... yes 
checking a.out.h presence... yes 
checking for a.out.h... yes 
checking whether g++ supports C++11 features by default... no 
checking whether g++ supports C++11 features with -std=c++11... no 
checking whether g++ supports C++11 features with -std=c++0x... no 
checking whether g++ supports C++11 features with +std=c++11... no 
checking whether g++ supports C++11 features with -h std=c++11... no 
configure: error: *** A compiler with support for C++11 language features is required. 

这里是从g++ --version输出:

g++ (Debian 4.7.2-5) 4.7.2 
Copyright (C) 2012 Free Software Foundation, Inc. 
This is free software; see the source for copying conditions. There is NO 
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 

,这里是一个示例应用程序用C++ 11编译:

g++ -std=c++11 -g -c -pedantic -Wall -Wextra -I../boost_1_57_0 -L../boost_1_57_0/stage/lib UtilsText.cpp -o UtilsText.o 
g++ -std=c++11 -g -c -pedantic -Wall -Wextra -I../boost_1_57_0 -L../boost_1_57_0/stage/lib UtilsWeb.cpp -o UtilsWeb.o 
g++ -std=c++11 -g -c -pedantic -Wall -Wextra -I../boost_1_57_0 -L../boost_1_57_0/stage/lib WorkElement.cpp -o WorkElement.o 

我不知道为什么breakpad抱怨我的g ++没有支持对于c + + 11,或者如果有一种方法,我可以重写或添加额外的参数,以便它正确地检测我的编译器。

任何有关我可能会错过或做错的提示? breakpad是否使用可能安装在我的系统中的另一个gcc?

这里是的config.log文件:http://pastebin.com/TuHrmiLv

+0

如果您检查'config.log'它说了什么?它应该显示用于尝试和编译的实际命令。 –

+0

@JoachimPileborg我已经添加了一个指向配置日志文件的链接。它在测试gcc时有几个错误,但它似乎在使用正确的版本。有小费吗? – BlunT

回答

1

虽然GCC 4.7确实有一些C++ 11吨的能力,这是严重缺乏的大部分所需的所有功能。因此,虽然配置脚本使用正确的选项来启用C++ 11,但编译器实际上无法处理测试程序,因为它使用的是旧版GCC 4.7版中不具备的功能。

如果您想使用Breakpad,您需要支持旧编译器的旧版Breakpad,或者您需要将编译器更新为更新的版本。 5系列应该完全支持C++ 11。

+0

谢谢!我不得不将其他软件库添加到我的debian系统中,以便能够安装gcc 5,它不在主存储库中。汇编成功! – BlunT