如何在 Qt Creator 中使用 TBB
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 LIBS 中,我认为你不能使用小丑字符(*,?)。您需要使用库的实际名称。请注意,您可以指定库的搜索路径,然后指定“短格式”的库名称。如果您的目标是交叉编译,它可能很有用。
这是链接 Open Ssl 的示例(可能对您有用)
关于您的错误代码,您使用的是什么编译器(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)
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.