基于Qt/Embedded的嵌入式GUI设计

建立Qt/Embedded开发环境 安装x86-qtopia源代码 # tar xvzf x86-qtopia.tgz –C /sbc2410 # cd /sbc2410/x86-qtopia #./build (shell 程序) 安装SBC-2410X版本的arm-qtopia源代码 #tar xvzf arm-qtopia.tgz –C /sbc2410 # cd /sbc2410/x86-qtopia #./build (shell 程序) 当在PC上模拟Qtopia的运行时,需要用到对应Qt版本的库文件,因此需要修改/etc/ld.so.conf 文件以适应刚刚安装的Qt(Redhat安装时带有Qt库,但不适合我们最新安装的版本),修改后的ld.so.conf文件内容如下: /sbc2410/x86-qtopia/qt/lib /sbc2410/x86-qtopia/qtopia/lib /usr/kerberos/lib /usr/X11R6/lib /usr/lib/sane 修改完此文档后,为了让刚刚安装的库生效,必须运行ldconfig。 至此Qt的开发缓建已经建立。 1)设置环境变量 在/sbc2410/x86-qtopia/目录下输入“source set-env”或“. set-env”。 (2)启动虚拟帧缓存 “$ qvfb &” 或“$ qvfb -width 640 –height 480 &” (3)运行qtopia qpe &  

你可能感兴趣的:(QT)