QT嵌入式程序,成功运行

1、QT下载地址:ftp://ftp.qt.nokia.com/qt/source/

2、环境搭建参考:http://mobile.51cto.com/symbian-273476.htm

博客里环境变量设置方法不错

3、建立arm示例程序test.cpp:

#include<QApplication>
#include<QPushButton>

int main(int argc,char **argv)
{
        QApplication a(argc,argv);
        QPushButton hello("hello,wrold");
        hello.resize(120,30);
        hello.show();
        return a.exec();
}

注test程序要用.cpp格式

4、按照另一篇博客,建立虚拟机与开发板的ftp连接,将编译好的test程序考到开发板里

5、直接运行的话会报error while loading shared libraries: libQtGui.so.4: cannot open shared object file: No such file or directory错误。

解决方法是编辑/etc/profile文件,将/usr/local/lib与/usr/local/Trolltech/QtEmbedded-4.6.3-arm/lib添加到LD_LIBRARY_PATH环境变量下:

TSLIB_ROOT=/usr/local/lib
LD_LIBRARY_PATH=/usr/local/Trolltech/QtEmbedded-4.6.3-arm/lib:$TSLIB_ROOT

export LD_LIBRARY_PATH

然后reboot

6、运行/test -qws 程序运行,搞定!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值