__cxa_demangle 使用 devtoolset-4 gcc-5.2 在 rhel6 (centos6) 上失败

__cxa_demangle fails on rhel6 (centos6) with devtoolset-4 gcc-5.2

我尝试了最小测试用例。这种情况在 rhel-7 上通过 devtoolset-4 (gcc-5.2),在 rhel-6 下失败。状态 -2 表示 "mangled_name is not a valid name under the C++ ABI mangling rules." https://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-4.3/a01696.html

我是不是做错了,或者如果我想在 RHEL-6 上使用 gcc-5.2,这是一个我必须以某种方式解决的错误吗?如果是这样,有什么建议吗?到目前为止,我最好的想法是在将其提供给 __cxa_demangle() 之前,将损坏名称中的 "IJ" 正则表达式转换为 "II"。如果这可能是相对可靠的,我可以接受它。

#include <iostream>
#include <string>
#include <tuple>
#include <typeinfo>
#include <cxxabi.h>

#define DUMP(x) std::cout << #x << " is " << x << std::endl

template<typename T>
void print_type(T t)
{
    int status;
    auto name = typeid(t).name();
    DUMP(name);
    auto thing2 = abi::__cxa_demangle(name, 0, 0, &status);
    if(status == 0)
    {
        DUMP(thing2);
    }
    else
    {
        std::cout << typeid(t).name() << " failed to demangle\n";
        DUMP(status);
    }
}

typedef std::tuple<foo_t, foo_t> b_t;

int main(int argc, char **argv)
{
    std::tuple<bool, bool> t;
    print_type(t);
}

Centos-6 输出

name is St5tupleIJbbEE
St5tupleIJbbEE failed to demangle
status is -2

Centos-7 输出

name is St5tupleIJbbEE
thing2 is std::tuple<bool, bool>

使用 devtoolset-3 (gcc-4.9) 的 Centos-6 输出

name is St5tupleIIbbEE
thing2 is std::tuple<bool, bool>
std::string typestring(typeid(T).name());
auto pos = typestring.find("IJ");
if(pos != std::string::npos)
{
    // gcc-5.2 uses IJ in typestring where
    // gcc-4.9 used II - this fugly hack makes
    // cxa_demangle work on centos/rhel-6 with gcc-5.2
    // eg std::tuple<bool, bool> 
    typestring[pos + 1] = 'I';
}
rv = abi::__cxa_demangle(typestring.c_str(), 0, 0, &status);