我注意到Mac上的库存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)
最佳答案
自苹果公司认为更新libc++。dylib足够重要以来已经有一段时间了。我听说谣言可能会在Capitan之后在操作系统中进行更新。
Swift怎么了?! ;-)
关于c++ - Mac OSX libc++缺少std::uncaught_exceptions符号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38852049/