gpt4 book ai didi

concurrency - 如何在 Eclipse CDT 中使用 GCC/G++ 编译和运行 C++0x?

转载 作者:行者123 更新时间:2023-12-04 06:50:34 24 4
gpt4 key购买 nike

我想弄清楚如何使用即将发布的 C++ 版本 0x。它应该可以在 GCC 4.3+ 中使用 gcc std=gnu++0x 选项。

我使用 0x 的简单线程程序在 Eclipse CDT 中编译,并在项目 > 属性 > C/C++ 构建 > 设置 > 杂项 > 其他标志中添加了 std=gnu++0x。

#include <iostream>
#include <thread>
using namespace std;

void hello()
{
cout << "Hello Concurrent World!" << endl;
}

int main()
{
cout << "starting" << endl;
thread t(hello);
t.join();
cout << "ending" << endl;
return 0;
}

该程序只打印“开始”并返回 0。有谁知道它为什么不运行线程化的 hello 函数?

最佳答案

要使用线程,您还需要链接到线程库。
如果您还没有这样做,请添加 -lpthread到您的命令行或在您的情况下到其他标志字段。

命令行执行(在 eclipse 的控制台窗口中可见)应如下所示:
gcc -std=gnu++0x -lpthread <source_file_name>.cc

关于concurrency - 如何在 Eclipse CDT 中使用 GCC/G++ 编译和运行 C++0x?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3175450/

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