我使用的是C ++ OpenCL包装程序,我想知道为什么我的程序崩溃了。我发现对的任何调用std::call_once均引发错误。
#include <mutex>
int main() {
static std::once_flag f;
std::call_once(f, []{});
}
Run Code Online (Sandbox Code Playgroud)
程序输出:
Run Code Online (Sandbox Code Playgroud)terminate called after throwing an instance of 'std::system_error' what(): Unknown error -1
这是的输出g++ -v:
Run Code Online (Sandbox Code Playgroud)Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/8.1.1/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp Thread model: posix gcc version 8.1.1 20180531 (GCC)
Gui*_*cot 13
正如 Praetorian 在评论中所说,std::call_once需要调用系统线程库。更具体地说,它将调用__gthread_once. 如果可执行文件未链接到 pthread,则该函数将返回-1并导致抛出异常。
-pthread如gcc 文档中所述,要制作程序 pthread-enabled选项需要同时传递给编译器和链接器。仅仅链接-lpthread有时是不够的,不仅仅是因为有额外的宏。对于 CMake 用户,有一个开箱即用的模块可以帮助添加对 pthread(或任何系统线程库)的支持,可以像这样使用:
find_package(Threads REQUIRED)
target_link_libraries(myTarget PRIVATE Threads::Threads)
Run Code Online (Sandbox Code Playgroud)
如有必要,这将添加任何必需的编译和链接标志。
| 归档时间: |
|
| 查看次数: |
527 次 |
| 最近记录: |