gpt4 book ai didi

qt - QCompare 的 undefined symbol

转载 作者:行者123 更新时间:2023-12-04 14:47:16 53 4
gpt4 key购买 nike

使用 QTestLib 构建测试时,出现 qCompare 的“ undefined symbol ”错误。功能:

Undefined symbols for architecture x86_64:
"__ZN5QTest8qCompareIimEEbRKT_RKT0_PKcS8_S8_i", referenced from:
__ZN15MyTestClass22myTestFunctionEv in MyTestClass.o

最佳答案

您可以通过传递 c++filt 来解密损坏的符号。在 shell 命令中:

echo __ZN5QTest8qCompareIimEEbRKT_RKT0_PKcS8_S8_i | c++filt

...它会打印一个 C++ 函数签名,如下所示:
bool QTest::qCompare<int, unsigned long>(int const&, unsigned long const&, char const*, char const*, char const*, int)
QCOMPARE 的两个参数宏——即 qCompare 的两个模板参数函数 - 必须具有完全相同的类型。例如,如果其中一个是 int,则会出现错误。另一个是 size_t .

关于qt - QCompare 的 undefined symbol ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14198972/

53 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com