×
嵌入式开发 > 详情

QtCreator4.5在Ubuntu下的安装

发布时间:2020-06-30 发布时间:
|

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

我们可以到/zixunimg/eepwimg/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 装上

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



『本文转载自网络,版权归原作者所有,如有侵权请联系删除』

热门文章 更多
简单控制系统投运与参数整定―水箱液位定值控制实验