使用librt构建QT Embedded

时间:2010-11-16 16:36:49

标签: qt embedded cross-compiling librt

我正在为OMAP3平台构建QT embedded 4.7。在链接阶段,它失败,因为clock_gettime没有符号。在我过去的自己的应用程序中,我通过链接librt解决了这个问题。我配置了QT嵌入式错误吗?如何在不修改make脚本的情况下让librt编译?

非常感谢

1 个答案:

答案 0 :(得分:1)

我实际上找到了答案。我在我的mkspec中将以下内容添加到qmake.conf,然后编译!

QMAKE_LIBS_THREAD = -lpthread -lrt

希望这有助于其他人。