使用 librt 构建 QT Embedded
我正在为 OMAP3 平台构建 QT 嵌入式 4.7。在链接阶段,它失败,因为clock_gettime没有符号。在我过去的应用程序中,我通过链接 librt 解决了这个问题。我嵌入的 QT 配置错误吗?如何在不修改 make 脚本的情况下编译 librt?
多谢
I'm building QT embedded 4.7 for the OMAP3 platform. at the link stage, it fails because clock_gettime has no symbol. In my own applications in the past, i've solved this by linking in librt. Have i configured QT embedded wrong? how do i get librt to compile in without modifying the make scripts?
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我确实找到了答案。我将以下内容添加到 mkspec 中的
qmake.conf
中,并且它可以编译!希望这对其他人有帮助。
I actually found the answer. I added the following to my
qmake.conf
in my mkspec, and it compiles!Hope this helps someone else.