安装qwt-6.1.0时 make出错 :Project ERROR: Unknown module(s) in QT: svg

如果出现这样的错误:Project ERROR: Unknown module(s) in QT: svg

很 有可能 qmake 版本不一致造成的。

qmake  , qtcreator  , qtdesigner 和 QT 的版本必须一致。要么是 QT4 ,要么就是 QT5, qtcreator是QT5特有的core,ui编译IDE,其中ui编辑会调用qtdesigner.  我的linux 中安装了QT4和QT 5.所以安装的时候出现了一些版本不兼容的问题,后来把版本一一统一后,问题就消除了。

把Qmake 加入环境变量的方法参照如下:

单独查看PATH环境变量,可用:

[[email protected] u-boot-sh4]#echo $PATH

/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

添加PATH环境变量,可用:

[[email protected] u-boot-sh4]#export PATH=/opt/STM/STLinux-2.3/devkit/sh4/bin:$PATH

再次查看:

[[email protected] u-boot-sh4]# echo $PATH

/opt/STM/STLinux-2.3/devkit/sh4/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

说明添加PATH成功。

上述方法的PATH 在终端关闭后就会消失。所以还是建议通过编辑/etc/profile来改PATH,也可以改家目录下的.bashrc(即:~/.bashrc)。

第二种方法:

# vim /etc/profile

在文档最后,添加:

export PATH="/opt/STM/STLinux-2.3/devkit/sh4/bin:$PATH"

保存,退出,然后运行:

#source /etc/profile

不报错则成功。

笔者因为安装了qt4 和qt5  所以在加入的时候  使用了qt5的qmake   导致上述问题,改为qt4  问题解决

然后我make 的时候又出现如下错误:

Project ERROR: local build will conflict with /usr/lib64/libqwt.*

原因是  我用yum 安装了不少qwt 6.1.1的其它东西

用yum remove qwt*

再次make   成功。

时间: 2024-10-08 20:54:15

安装qwt-6.1.0时 make出错 :Project ERROR: Unknown module(s) in QT: svg的相关文章

安装.net framework 4.0时提示HRESULT 0 xc8000222

This behavior may occur if the temporary folder of Windows Update has been corrupted. We can refer to the following steps to rename this folder. Please be assured the folder will be created again when we visit the Windows Update site again. 1. Click

VS2010 win7 64位安装后新建项目生成时错误:LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏

解决方案:VS2010在经历一些更新后,建立Win32 Console Project时会出“error LNK1123” 错误,解决方案为将 项目|项目属性|配置属性|清单工具|输入和输出|嵌入清单 “是”改为“否”即可,但是没新建一个项目都要这样设置一次. 在建立VS2010 Win32 Project项目时,按照上面解决方案依然发生了“error LNK1123”错误,经过上网查资料,解决方案为: 第一步:与上相同. 第二步:将 项目|项目属性|配置属性|连接器|清单文件|嵌入清单 “是”

自定义库引用时编译出错“collect2: error: ld returned 1 exit status”

想必很多人都遇到过这样的事情,需要写一个共享库,这个库又不能让所有的人都了解里面是怎么实现的,所以只能提供一个库出来供项目使用,可能是处于保密.核心业务的需要,这些都能够理解.笔者也写了一个简单的东西测试了一下,里面还是有不少东西. "collect2: error: ld returned 1 exit status"首先就遇到了这个问题.查了一下,这种错误网上说法也一大堆,起作用的还不多.在android系统里面加的共享库,需要加"namespace android &q

在VC2015下编译DOOM3时发现出错fatal error C1189: #error

错误:fatal error C1189: #error :  The C++ Standard Library forbids macroizing keywords. Enable warning C4005 to find the forbidden macro. 解决方法:add "_XKEYCHECK_H" in Preprocessor Definitions 属性--配置属性-c/c++-预处理器 添加 _XKEYCHECK_H

[ERROR ]Failed to execute goal org.codehaus.mojo:flatten-maven-plugin:1.1.0:flatten (flatten) on project

今天在启动项目的时候,莫名的Maven install命令的时候出现错误 错误提示:Failed to execute goal org.codehaus.mojo:flatten-maven-plugin:1.1.0:flatten (flatten) on project [ERROR] Failed to execute goal org.codehaus.mojo:flatten-maven-plugin:1.1.0:flatten (flatten) on project lis: 4

【翻译自mos文章】在RHEL7 or OEL7上安装oracle 11.2.0.4 db时的要求

在RHEL7 or OEL7上安装oracle 11.2.0.4 db时的要求 来源于: Requirements for Installing Oracle 11.2.0.4 RDBMS on RHEL7 or OL7 64-bit (x86-64) (文档 ID 1962100.1) 适用于: Oracle Database - Standard Edition - Version 11.2.0.4 to 11.2.0.4 [Release 11.2] Oracle Database - E

centos 安装gcc时,出错:Found 10 pre-existing rpmdb problem(s), 'yum check' output follows:

别人折腾的系统. 刚开始,准备安装下tornado,报错,需要安装 gcc 和 python-devel gcc安装报错,如标题所示: 谷歌了一把: http://stackoverflow.com/questions/26484593/having-problems-installing-bzr-on-centos-6-5 发现上面这个描述比较接近,貌似是版本库不对,于是看下版本库的配置( /etc/yum.repos.d/), 发现  CentOS-Base.repo 被给重命名为了 Cen

Scrapy运行项目时出错:Scrapy 0.16.2 – no active project,Unknown command: crawl,Use "scrapy" to see available commands

[问题] 通过Scrapy创建好了项目: 1 E:\Dev_Root\python\Scrapy>scrapy startproject songtaste 运行项目,结果出错: 1 2 3 4 5 6 E:\Dev_Root\python\Scrapy>scrapy crawl songtaste -t json -o h1user.json Scrapy 0.16.2 - no active project Unknown command: crawl Use "scrapy&q

QWT 6.1.0 在 Qt 5.6 (msvc2013) 成功安装编译使用

环境: Win7 64 bit / Qt Creator 3.6.1 / Qt 5.6  (msvc2013) / QWT 6.1.0   参考: http://blog.sina.com.cn/s/blog_a6fb6cc90102v25w.html http://blog.csdn.net/ymc0329/article/details/7865339 http://blog.chinaunix.net/uid-26815567-id-4064185.html http://www.cnbl