ChinaUnix.net
相关文章推荐:

qt arm

v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 st1\:*{behavior:url(#ieooui) } /* Style Definitions */ table.MsoNormalTable {mso-style-name:普通表格...

by wpneu - Linux文档专区 - 2009-09-02 22:05:05 阅读(1628) 回复(0)

相关讨论

   这几天开始回归到画板子图形界面,之前尝试过qtopia和Gtk,但都不好使,遂改为用qt来做,搭建完交叉编译环境后,编译之前的代码,缺碰到一些问题,郁闷了。。由于没有记录之前搭建的qt环境的步骤和方法,导致现在也不记得了,只能从源代码来看了,还要找到了突破口。
    方法是这样的,交叉编译并安装完qt后,需要添加环境变量,但是我懒得理它了,用下面的命令来解决。
   /usr/qt-...

by lantianyu520 - 移动操作系统 - 2011-12-21 08:41:32 阅读(1747) 回复(0)

我们学校买的实验箱是博创公司的用的是三星的S3C2410,配套的做实验的系统是RedHat9. 但是我想用DEBIAN来做实验,我们在做博创实验指导书中第三章的qt实验时,在配置路径第二步,在./configure no-xft 之后的make出现了错误 ,很多同学的都是如此,据说是DEBIAN少一些库,究竟是怎么样的?请各位高手指点。

by helun - 嵌入式开发 - 2008-12-22 19:37:18 阅读(1546) 回复(1)

qtopia2(arm-qt with xml) 1. now that the touch sreen is alive, why not caliberate it again. Thinking of that I open hyper change the name /qt/…/pointercal into pointer_save, then delete /etc/pointercal 2. reboot, caliberate, ts works perfectly again. 3. then I #cd /etc/linuette/start #vi peter.txt, then I reboot and see a file named peter shows up on the desktop, press and it o...

by happypeter - Linux文档专区 - 2008-03-30 10:18:27 阅读(608) 回复(0)

qtopia1(arm-qt with xml) 1. in one the my printed article: web-hotdog4/mpalyer porting they use cp /dev/fb0 myimage, and cp myimage /dev/fb0, which works on my platform(I issue it in busybox hyper termional), I am happy, but the updated picture is not good, one day I will put the commmand in /etc/init.d/rc.S and see what is gong to happen. 2. write shell script on arm(yctek sys) a) #/bin/sh...

by happypeter - Linux文档专区 - 2008-03-30 10:17:37 阅读(962) 回复(0)

Andrew Huang <bluedrum@163.com> 转载请注明作者及联络方式


  这个已经接近最新版,更大是qt 4.7.3 离线版要1G,因此选择这个版本进行移植,用来测试.一下I80的屏.

  一.准备工作

   1. zip版本(不推荐下载)

by bluedrum - 移动操作系统 - 2011-12-22 08:51:13 阅读(1427) 回复(0)

 

by zrx171407518 - MySQL - 2011-12-21 08:42:51 阅读(1512) 回复(0)

我现在搞一上板子,上面有qtopia4.4.3 然我后虚拟机下装有qt-embedded-....4.5.3 我用qt写了一个简单的helloworld代码如下: main.cpp: #include #include "window.h" int main(int argc,char **argv) { QApplication app(argc,argv); window *win = new window; win->show(); return app.exec(); } window.cpp: #include "window.h" window::window(QWidget *parent):QWidget(parent) { hello_butto...

by kg_it_cu - 嵌入式开发 - 2011-12-28 20:46:30 阅读(3638) 回复(5)

arm-linux-gcc编译qt代码,出现QLabel:no such file or directory这样的错误,这显然是 arm-linux-gcc不能连接qt的类库,如何解决?

by wamhsqwjn - 嵌入式开发 - 2010-08-23 12:43:32 阅读(2094) 回复(1)

by tangke 2009-09-20 这两天在x86平台上面交叉编译了qt extended 4.4.3,目标系统为arm 1.先设定好PATH变量. export PATH=${PATH}:/usr/local/arm/4.3.2/bin 2.下面再说说脚本吧 #!/bin/bash export VERSION=4.4.3 export TARGET_DIR=`pwd` export DOWNLOADDIR=${TARGET_DIR}/download export BUILDDIR=${TARGET_DIR}/build export ARCHTYPE=arm export PREFIX=${TARGET_DIR}/target test -d ${BUILDDIR} || mkdir -pv ${BUILD...

by fewlife - Linux文档专区 - 2009-09-20 12:12:04 阅读(2260) 回复(0)

by tangke 2009-09-18 本文主要介绍qt-embedded-linux-opensource-src-4.5.2的交叉编译arm平台 1.download qt-embedded-linux-opensource-src-4.5.2.tar.bz2 2.download the arm toolchain of eabi 3.tar xf arm-linux-gcc-4.3.2.tgz 4.export PATH=$PATH:~/usr/local/arm/4.3.2/bin 5.start to cross compile use this shell #!/bin/bash export VERSION=4.5.2 export TARGET_DIR=`pwd` export DOWNLOADDIR=${TARGET_DIR}/dow...

by fewlife - Linux文档专区 - 2009-09-18 16:01:49 阅读(1123) 回复(0)