gpt4 book ai didi

C++0x "Hello Concurrent World"在 g++/linux 上立即出现段错误?

转载 作者:IT王子 更新时间:2023-10-29 00:04:15 25 4
gpt4 key购买 nike

浏览 C++0x 中的货币一书,并认为我可以运行示例代码。它是最基本的。

#include <iostream>
#include <thread>

void hello()
{
std::cout<<"Hello Concurrent World\n";
}


int main(int argc, char *argv[])
{
std::thread t(hello);

t.join();
}

编译:

g++ -std=c++0x -g -o pgm pgm.cpp

蓬勃发展:

Program received signal SIGSEGV, Segmentation fault.
_dl_fixup (l=0x7ffff7b0992c, reloc_arg=<value optimized out>) at ../elf/dl-runtime.c:147
147 ../elf/dl-runtime.c: No such file or directory.
in ../elf/dl-runtime.c

似乎是某种设置/库问题。有熟悉这方面的人吗?

最佳答案

您需要使用 -pthread 标志进行编译/链接。

关于C++0x "Hello Concurrent World"在 g++/linux 上立即出现段错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3432039/

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