如何在 Qt Creator 中使用 TBB

发布于 2024-11-15 10:45:10 字数 538 浏览 4 评论 0原文

我正在尝试在 Qt Creator 中使用 TBB。我使用的是 Qt 4.7 和 TBB 3.0,下面是我在 .pro 中的设置。

INCLUDEPATH += C:\tbb30\include
LIBS += C:\tbb30\lib\ia32\vc10\*.lib

我的示例代码非常简单:

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    tbb::concurrent_vector<int> v;
    v.push_back(1);
    v.push_back(2);
    v.push_back(3);
    v.push_back(4);

    std::cout<<v.size();

    return a.exec();
}

但是程序退出时显示代码-1073741515

有人以前在Qt Creator中使用过TBB吗?

此致,

I am trying to use the TBB in the Qt Creator. I am using the Qt 4.7 and TBB 3.0, below is my setting in .pro.

INCLUDEPATH += C:\tbb30\include
LIBS += C:\tbb30\lib\ia32\vc10\*.lib

My sample code is very simple:

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    tbb::concurrent_vector<int> v;
    v.push_back(1);
    v.push_back(2);
    v.push_back(3);
    v.push_back(4);

    std::cout<<v.size();

    return a.exec();
}

But the program exit with the code -1073741515

Anyone use the TBB in the Qt Creator before?

Best Regards,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷弦 2024-11-22 10:45:10

在 LIBS 中,我认为你不能使用小丑字符(*,?)。您需要使用库的实际名称。请注意,您可以指定库的搜索路径,然后指定“短格式”的库名称。如果您的目标是交叉编译,它可能很有用。

这是链接 Open Ssl 的示例(可能对您有用)

LIBS += -L${OPEN_SSL}/lib
LIBS += -llibeay32
LIBS += -lssleay32

关于您的错误代码,您使用的是什么编译器(mingwin 还是 Visual?)。在任何情况下,您都可以检查生成的命令以尝试了解它出错的原因(链接器命令)。希望这有帮助。

in LIBS, I don't think you can use joker characters (*, ?). You need to use the actual name of the lib. Note that you can specify a search path for libs, then the lib name in "short format". If you aim at cross-compilation, it can be useful.

Here is an example to link Open Ssl (might be useful for you)

LIBS += -L${OPEN_SSL}/lib
LIBS += -llibeay32
LIBS += -lssleay32

Concerning your error code, what compiler are you using (mingwin or visual?). In any case, you can check the generated command to try to understand why it goes wrong (the linker command). Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文