电子文章 | 电子资料下载 | 家电维修 | 维修资料下载 | 加入收藏 | 全站地图
您现在所在位置:电子爱好者电子文章arm嵌入式QtCreator4.5在Ubuntu下的安装

QtCreator4.5在Ubuntu下的安装

11-20 15:54:09 | http://www.5idzw.com | arm嵌入式 | 人气:347
标签:arm嵌入式系统,arm系统,arm开发,http://www.5idzw.com QtCreator4.5在Ubuntu下的安装,http://www.5idzw.com

  作者:孙晓明,www.5idzw.com嵌入式学院讲师。

  在课堂上我们安装的QtCreator是windows的版本,而且编译的时候明显感觉很慢,于是我就找到了一个Linux版本的QtCreator,在Ubuntu9.04的操作系统上进行了安装。安装后编译尝试了一下,果然比在windows下要快很多。

  我们可以到http://www.qtsoftware.com/downloads-cn 上下载最新的版本。qt-sdk-linux-x86-opensource-2009.02.bin

  下载之后在打开终端执行:

  1.给安装文件加上执行权限

  chmod u+x qt-sdk-linux-x86-opensource-2009.02.bin

  2.执行安装命令

  ./qt-sdk-linux-x86-opensource-2009.02.bin

  在安装完 QtCreator 建立一个helloworld的工程进行编译,在编译的时候可能会出现如下错误:

  /usr/bin/ld: cannot find -lfreetype

  collect2: ld 返回 1

  make[1]: *** [text] 错误 1

  make[1]:正在离开目录 `/home/noah/qtWorkPlace/text'

  make:离开目录“/home/noah/qtWorkPlace/text”

  make: *** [debug] 错误 2

  Exited with code 2.

  Error while building project text

  When executing build step 'Make'

  解决方法:

  在新立得里找 freetype,把那个dev版的libfreetype6-dev装上。

  继续编译可能会出现如下错误:

  /usr/bin/ld: cannot find -lgobject-2.0

  collect2: ld 返回 1

  make[1]:正在离开目录 `/home/noah/qtWorkPlace/text'

  make:离开目录“/home/noah/qtWorkPlace/text”

  make[1]: *** [text] 错误 1

  make: *** [debug] 错误 2

  Exited with code 2.

  Error while building project text

  When executing build step 'Make'

  解决方法:

  在新立得里找 gobject,把那个dev版的 libavahi-gobject-dev 装上。

  继续编译可能会出现如下错误:

  /usr/bin/ld: cannot find -lSM

  collect2: ld 返回 1

  make[1]:正在离开目录 `/home/noah/qtWorkPlace/text'

  make[1]: *** [text] 错误 1

  make: *** [debug] 错误 2

  make:离开目录“/home/noah/qtWorkPlace/text”

  Exited with code 2.

  Error while building project text

  When executing build step 'Make'

  解决方法:

  在新立得里找 libsm-dev 装上

  继续编译可能会出现如下错误:

  /usr/bin/ld: cannot find -lXrender

  collect2: ld 返回 1

  make[1]: *** [text] 错误 1

  make[1]:正在离开目录 `/home/noah/qtWorkPlace/text'

  make:离开目录“/home/noah/qtWorkPlace/text”

  make: *** [debug] 错误 2

  Exited with code 2.

  Error while building project text

  When executing build step 'Make'

  解决方法:

  在新立得里找 libxrender-dev 装上

  继续编译可能会出现如下错误:

  /usr/bin/ld: cannot find -lfontconfig

  collect2: ld 返回 1

  make[1]:正在离开目录 `/home/noah/qtWorkPlace/text'

  make:离开目录“/home/noah/qtWorkPlace/text”

  make[1]: *** [text] 错误 1

  make: *** [debug] 错误 2

  Exited with code 2.

  Error while building project text

  When executing build step 'Make'

  解决方法:

  在新立得里找 libfontconfig1-dev 装上

  继续编译可能会出现如下错误:

  /usr/bin/ld: cannot find -lXext

  collect2: ld 返回 1

  make[1]:正在离开目录 `/home/noah/qtWorkPlace/text'

  make:离开目录“/home/noah/qtWorkPlace/text”

  make[1]: *** [text] 错误 1

  make: *** [debug] 错误 2

  Exited with code 2.

  Error while building project text

  When executing build step 'Make'

  解决方法:

  在新立得里找 libxext-dev 装上

  到此基本应该没有问题了,现在运行试一下效果吧,看看是不是快了很多。

  “www.5idzw.com提供”



  ,QtCreator4.5在Ubuntu下的安装
关于《QtCreator4.5在Ubuntu下的安装》的更多文章