gpt4 book ai didi

c++ - Mac OSX libc++ 缺少 std::uncaught_exceptions 符号

转载 作者:行者123 更新时间:2023-11-30 05:24:06 28 4
gpt4 key购买 nike

我注意到我的 Mac 上的 stock libc++ 中缺少 std::uncaught_exceptions 符号:

$ clang++ -v; otool -L /usr/lib/libc++.dylib
Apple LLVM version 7.3.0 (clang-703.0.31)
Target: x86_64-apple-darwin15.6.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
/usr/lib/libc++.dylib:
/usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.1.0)
/usr/lib/libc++abi.dylib (compatibility version 1.0.0, current version 125.0.0)
...
$ nm /usr/lib/libc++.dylib | c++filt | grep uncaught
0000000000007782 T std::uncaught_exception()
U ___cxa_uncaught_exception

但是, header 声明了原型(prototype):

$ pwd
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1
$ grep uncaught_exceptions exception
int uncaught_exceptions() noexcept; // C++17
_LIBCPP_FUNC_VIS int uncaught_exceptions() _NOEXCEPT;

这是一个糟糕的构建还是什么?从 libc++ 源代码中,我看到符号应该在 libc++ 中结束,但它不在那里,我在链接时得到了一个丢失的符号。

编辑:这是一个最小的失败程序:

$ cat t.cpp; clang++ -std=c++1z t.cpp
#include <exception>

int main () {
return std::uncaught_exceptions ();
}
Undefined symbols for architecture x86_64:
"std::uncaught_exceptions()", referenced from:
_main in t-a4015f.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

最佳答案

Apple 认为更新 libc++.dylib 已经有一段时间(几年)了。我听说它可能在 El Capitan 之后 在操作系统中更新。

Swift 出了什么问题?! ;-)

关于c++ - Mac OSX libc++ 缺少 std::uncaught_exceptions 符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38852049/

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