问题描述
我在使用-lrt"选项构建的 QT 时遇到了一些麻烦
i'm getting some troubles with QT it builds with option "-lrt"
我使用的是 mac os 10.6 和 QT creator 1.2.1,嘻嘻!
i'm using mac os 10.6 with QT creator 1.2.1, heeeeeeelp !
这是完整的构建命令:
g++ -headerpad_max_install_names -oAMiningCoreTest main.o tokenizer.oDictionnaryToolBox.o mysql.o btree.oBTreeDataTable.o tcaccess.o-L/Library/Frameworks -L/usr/lib/mysql -lmysqlclient -L/usr/local/lib/-ltokyocabinet -lz -lbz2 -lrt -lpthread -lm -lc
以
ld: 找不到 -lrt 的库collect2: ld 返回 1 个退出状态
推荐答案
为什么程序需要librt?
Why does the program need librt?
我知道某些平台(想到 Solaris)需要 librt 来执行某些可能存在于您操作系统的其他库中的函数.(sem_init()等都是这样的)
I know that some platforms (Solaris comes to mind) require librt for some functions which might exist in other libraries in your OS. (sem_init() et al. are like this)
您可以尝试不使用 -lrt 进行链接,看看它是否有效.
You might try to link without -lrt and see if it works.
这篇关于使用 QtCreator [mac os] 找不到用于 -lrt 的库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!