huangshan111 发表于 2013-6-20 20:52:03

飞凌-unix 发表于 2013-6-21 08:36:03

楼主你可以修改下helloword的运行脚本把程序路径指定对了就没有问题了

huangshan111 发表于 2013-6-21 09:28:07

blank 发表于 2013-6-23 17:22:32

huangshan111 发表于 2013-6-21 09:28 static/image/common/back.gif
运行脚本什么的也写过了,还是不行(包括网上找的资料都试过了),能否请版主把具体步骤包括脚本写出来,我 ...

因为板子已经有qt库文件了 我们不进行移植qt库,
1 安装arm-linux-gcc交叉编译器
2 编译 qt4.7.1 源码(源码有点错自己google修改)
3 安装qtcreator
4 配置qt create的 debug 加入编译好的qt4.7.1 qmake 文件 rebuild
5 在qtcreator创建一个新工程,利用qt4.7.1编译 生成arm运行文件(qtcreator会显示permission denied )
6 利用 各种方式把这个生成的文件拷贝到你的开发板子上(ssh nfs 串口rz命令 sd卡)
7 创建一个qt运行程序脚本 hello.sh


#!/bin/sh
base1=qpe
pid=`/bin/pidof $base1`
if [ -n "$pid" ]; then
        killall $base1
fi

base2=qss
pid=`/bin/pidof $base2`
if [ -n "$pid" ]; then
        killall $base2
fi

base3=quicklauncher
pid=`/bin/pidof $base3`
if [ -n "$pid" ]; then
        killall$base3
fi


base4=fluidlauncher
pid=`/bin/pidof $base4`
if [ -n "$pid" ]; then
        killall$base4
fi

export TSLIB_ROOT=/usr/local/tslib
export TSLIB_TSDEVICE=/dev/input/event2
export TSLIB_TSEVENTTYPE=H3600
export TSLIB_CONFFILE=/usr/local/tslib/etc/ts.conf
export TSLIB_PLUGINDIR=/usr/local/tslib/lib/ts
export TSLIB_CALIBFILE=/etc/pointercal
export TSLIB_PLUGINDIR=$TSLIB_ROOT/lib/ts
export TSLIB_CONSOLEDEVICE=none
export TSLIB_FBDEVICE=/dev/fb0
export QTDIR=/opt/qt-4.7.1/


export LD_LIBRARY_PATH=$QTDIR/plugins/qtopialmigrate/:$QTDIR/qt_plugins/imageformats/:$QTDIR/lib:/root/tslib/build/lib:$LD_LIBRARY_PATH
export PATH=/bin:/sbin:/usr/bin/:/usr/sbin:/root/tslib/build/bin


if [ -c /dev/input/event2 ]; then
      export QWS_MOUSE_PROTO="Tslib:${TSLIB_TSDEVICE}"
      if [ -e /etc/pointercal -a ! -s /etc/pointercal ] ; then
                rm /etc/pointercal
                /root/tslib/build/bin/ts_calibrate
      fi
else
      export QWS_MOUSE_PROTO="MouseMan:/dev/input/mice"
      >/etc/pointercal
fi
export QWS_KEYBOARD=TTY:/dev/tty1



FB_SIZE=$(cat /sys/class/graphics/fb0/virtual_size)

#export QWS_DISPLAY="LinuxFb:mmWidth76:mmHeight44:1"
case "$FB_SIZE" in
800,480)
export QWS_DISPLAY="LinuxFb:mmWidth91:mmHeight53:1"
;;
480,272)
export QWS_DISPLAY="LinuxFb:mmWidth76:mmHeight44:1"
;;
*)
export QWS_DISPLAY="LinuxFb:mmWidth91:mmHeight53:1"
;;
esac
#export QWS_DISPLAY=:1



export HOME=/root/QtE4Home

./filename -qws

复制上面代码,后面红色的filename 就填生成qt程序的名称
8 杀掉所有qt进程利用ps命令查看 kill命令杀
9 运行这个脚本

iceplain 发表于 2013-7-2 22:46:02

blank 发表于 2013-6-23 17:22 static/image/common/back.gif
因为板子已经有qt库文件了 我们不进行移植qt库,
1 安装arm-linux-gcc交叉编译器
2 编译 qt4.7.1 源码( ...

我的qt4.7.1编译过了,但是没有像qtopia4.3.3的sdk目录,手工在qt-creator添加qt version,把把/opt/qt04.7.1bin/qmake添加进去,前面出现个叹号! 无法编译,是怎么回事?

blank 发表于 2013-7-2 23:48:09

iceplain 发表于 2013-7-2 22:46 static/image/common/back.gif
我的qt4.7.1编译过了,但是没有像qtopia4.3.3的sdk目录,手工在qt-creator添加qt version,把把/opt/qt04 ...

qt creator 有时候也会出现这种现象原因是因为环境变量的问题 你先安装的qtcreator 然后编译的qt源代码 所以在环境变量方面有时候会出现这种情况但是 完全不影响你的使用因为你可以利用qtcreator建立工程 (建立源代码工程不用考虑用什么库)然后通过终端手动 qmake 编译 就可以了不一定要用qtcreator自带的 运行按钮   

blank 发表于 2013-7-2 23:49:18

blank 发表于 2013-7-2 23:48 static/image/common/back.gif
qt creator 有时候也会出现这种现象原因是因为环境变量的问题 你先安装的qtcreator 然后编译的qt源代码 ...

为什么帮助别人还要扣钱没人道

飞凌-路飞 发表于 2013-7-3 08:40:53

不可能吧 blank!!扣你多少钱啊!!

飞凌-路飞 发表于 2013-7-3 08:41:27

blank 发表于 2013-7-2 23:49 static/image/common/back.gif
为什么帮助别人还要扣钱没人道

blank!毕业了吧!!回老家了吗!
页: [1]
查看完整版本: 请移植成功HELLOWORD的兄弟们说说怎么作的,谢谢!