QT for Mips编译环境建立

export PATH=path/to/cross/mips-4.3/bin:$PATH

step 2:

cd qt-everywhere-source-4.6.2

./configure -embedded mips -xplatform qws/linux-mips-g++ -little-endian

Step 3:

cd qt-everywhere-source-4.6.2/mkspecs/qws/linux-mips-g++/
  vim qmake.conf
  如果是mips-4.3/linux-mips-gnu-g++交叉编译工具
  linux-mips-g++改成 linux-mips-gnu-g++

step 4


 makemake
  这个过程时间比较长,需要较长时间。

step      5
  运行 gmake install
  默认安装至 /usr/local/Trolltech/Qt-4.5.3
  大约 5 - 10 分钟。正常结束,安装完毕。
  运行 /usr/local/Trolltech/Qt-4.5.3/bin/designer ,看见 qt 启动,也就是说 qt 安装好了。

 step    6

一。先修改用户环境变量

vim fisrst.env

#!/bin/bash

export QTDIR=/usr/local/Trolltech/QtEmbedded-4.6.2-mips
  export PATH=$QTDIR/bin:$PATH
  export MANPATH=$QTDIR/man:$MANPATH
  export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH

以后需要编译先运行

source fisrst.env

可以echo $PATH查看是否把路径添加到PATH中

可以 qmake了

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/24869.html