make: powerpc-e300c3-linux-gnu-g++:命令未找到

news/2024/7/10 4:16:27 标签: c, qt, path
cle class="baidu_pl">
cle_content" class="article_content clearfix">
content_views" class="htmledit_views">

Qt编译项目时遇到:

make: powerpc-e300c3-linux-gnu-g++:命令未找到

解决办法:切换用户࿰c;使用powerpc-e300c3-linux-gnu-g++所属用户࿰c;我的所属用户为root࿰c;所以只需要切换到root用户就可以了!



需要添加环境变量是需要在/etc/profile中添加:

例如:添加字体和插件

export QT_QWS_FONTDIR=/mnt/hda3/dy/lib/fonts
export QT_PLUGIN_PATH=/mnt/hda3/dy/lib



cle>

http://www.niftyadmin.cn/n/1597469.html

相关文章

数据库中到底该不该使用外键

参考博客:https://www.cnblogs.com/a1304908180/p/10744205.html

linux查看串口信息

每个UART控制器包含一个波特率发生器,发送器,接收器和控制单元,发送和接收器包括FIFO和数据移位器,首先数据被写到FIFO中,然后复制到发送移位器中准备发送,最后数据被发送数据管脚移位发出。数据接收过程是…

Markdown转变成Html的插件工具类代码

参考博客:https://www.cnblogs.com/Fereli/p/11997865.html package com.code.iblog.util;import org.commonmark.Extension; import org.commonmark.ext.gfm.tables.TableBlock; import org.commonmark.ext.gfm.tables.TablesExtension; import org.commonmark.ext…

linux mknod命令

我们的linux操作系统跟外部设备(如磁盘、光盘等)的通信都是通过设备文件进行的,应用程序可以打开、关闭、读写这些设备文件,从而对设备进行读写,这种操作就像读写普通的文件一样easy。linux为不同种类的设备文件提供了…

sql中where和having的区别

参考博客:https://www.cnblogs.com/weibanggang/p/9632718.html

linux 串口阻塞和非阻塞

有两个可以进行控制串口阻塞性(同时控制read和write):一个是在打开串口的时候,open函数是否带O_NDELAY;第二个是可以在打开串口之后通过fcntl()函数进行控制。 不过在一般的程序中我们使用O_NOBLOCK参数,O…

idea恢复被删除内容、mybatis代码生成插件造成的文件覆盖

idea恢复被删除内容(选中项目右键) 选择show history

springboot+thymeleaf之pageHelper分页

依赖 <!-- 分页查询 --><dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper-spring-boot-starter</artifactId><version>1.2.3</version></dependency>application.yml配置 pagehelper:hel…