9
In file included from /usr/include/c++/4.8.2/locale:41:0,
                 from /usr/include/c++/4.8.2/iomanip:43,
                 from [...omitted by myself as it is irrelevant]
/usr/include/c++/4.8.2/bits/locale_facets_nonio.h:59:39: error: ‘locale’ has not been declared
     struct __timepunct_cache : public locale::facet

以上是我的构建日志中的第一个错误。

我没有尝试自己编译 glibc/gcc,而是通过 yum 安装的。

我发现的一件可疑的事情是:

$ ll /usr/include/c++/
total 4
drwxr-xr-x. 12 root root 4096 Dec 17 14:16 4.8.2
lrwxrwxrwx   1 root root    5 Dec 17 14:16 4.8.5 -> 4.8.2
$

yum 只显示了 1 个版本的 gcc:

$ yum info gcc-c++
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: centos.uhost.hk
 * epel: mirrors.hustunique.com
 * extras: centos.uhost.hk
 * updates: centos.uhost.hk
Installed Packages
Name        : gcc-c++
Arch        : x86_64
Version     : 4.8.5
Release     : 4.el7
Size        : 16 M
Repo        : installed
From repo   : base
Summary     : C++ support for GCC
URL         : http://gcc.gnu.org
License     : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD
Description : This package adds C++ support to the GNU Compiler Collection.
            : It includes support for most of the current C++ specification,
            : including templates and exception handling.

知道如何验证 /usr/include/c++/4.8.2 中的标头确实来自 4.8.5 包吗?

提前致谢。

PS我认为glibc可能无关紧要,但这里是信息:

$ ldd --version
ldd (GNU libc) 2.17
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.
Written by Roland McGrath and Ulrich Drepper.
4

3 回答 3

12

目录的符号链接4.8.2没什么好担心的,Red Hat Enterprise Linux(以及 CentOS)上的 libstdc++ 头文件这样排列是正常的。

gcc --version将告诉gcc您路径中可执行文件的版本。

rpm -q libstdc++-devel将告诉您拥有 C++ 标准库头文件的包的版本。

rpm -ql libstdc++-devel将列出该软件包安装的文件,其中将包括以下文件/usr/include/c++/4.8.2

rpm --verify libstdc++-devel将通过用其他东西替换它们来检查您是否没有弄乱 C++ 标头。

该错误更令人担忧,这意味着您搞砸。我的猜测是它在from [...omitted by myself as it is irrelevant]部分中,这实际上可能非常相关。std::locale应该声明<bits/locale_classes.h>其中包含 before <bits/locale_facets_nonio.h>,所以如果没有声明,我的猜测是你有一些头文件定义_LOCALE_CLASSES_H并阻止标准库头文件被读取。不要定义以下划线开头的包含保护它们是保留名称

于 2016-02-08T13:23:37.643 回答
1

我不太确定,但以下是更多信息

Stackoverflow:libc 的版本

$ /lib/x86_64-linux-gnu/libc.so.6 
GNU C Library (Ubuntu EGLIBC 2.19-0ubuntu6) stable release version 2.19, by Roland McGrath et al.
Copyright (C) 2014 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.
Compiled by GNU CC version 4.8.2.
Compiled on a Linux 3.13.9 system on 2014-04-12.
Available extensions:
    crypt add-on version 2.1 by Michael Glad and others
    GNU Libidn by Simon Josefsson
    Native POSIX Threads Library by Ulrich Drepper et al
    BIND-8.2.3-T5B
libc ABIs: UNIQUE IFUNC
For bug reporting instructions, please see:
<https://bugs.launchpad.net/ubuntu/+source/eglibc/+bugs>.
mandar@ubuntu:~/Desktop$ 
于 2016-02-08T13:12:06.503 回答
0

由于您使用的是Linux,您可以尝试

 ldd --version
于 2016-02-08T12:49:02.107 回答