当前位置:网站首页>Hi3536C V100R001C02SPC040 交叉编译器安装
Hi3536C V100R001C02SPC040 交叉编译器安装
2022-07-03 03:09:00 【Dorthyn】
目的
编译学习开源项目PUPANVR,进而学习如何将lvgl嵌套进自己的项目。博客地址:这里。该项目芯片使用海思的HI3536C,sdk使用V100R001C02SPC040,编译器使用arm-hisiv600-linux,CSDN上可以下载到相关资料,这里。
问题
- 安装完交叉编译器后,验证:
$ arm-hisiv600-linux-gcc -v
报错:没有那个文件或目录。
也就是说找不到编译器的位置。
- 关于
make app
这里其实并不是make传文件夹(路径名)参数,而是:
读别人的makefile还真是费劲-_-||
解决
arm-hisiv600-linux-gcc编译出现提示:No such file or directory
实际就是:64位ubuntu不兼容32bit工具问题。
解决办法如下:
apt-get update
sudo apt install lib32z1-dev
apt-get install lib32z1 lib32ncurses5
apt-get install lib32stdc++6
#apt-get install lib32bz2-1.0
apt-get install gcc-multilib g+±multilib
重新执行版本查看命令正常显示。
边栏推荐
- Le processus de connexion mysql avec docker
- Serious security vulnerabilities reported by moxa mxview network management software
- Agile certification (professional scrum Master) simulation exercises
- I2C 子系统(三):I2C Driver
- Concrete CMS vulnerability
- Process the dataset and use labelencoder to convert all IDs to start from 0
- Pytorch配置
- Source code analysis | layout file loading process
- Chart. JS multitooltip tag - chart js multiTooltip labels
- VS code配置虚拟环境
猜你喜欢
随机推荐
模糊查询时报错Parameter index out of range (1 > number of parameters, which is 0)
Deep reinforcement learning for intelligent transportation systems: a survey paper reading notes
[combinatorics] Application of exponential generating function (multiple set arrangement problem | different balls in different boxes | derivation of exponential generating function of odd / even sequ
力扣------网格中的最小路径代价
BigVision代码
Add some hard dishes to the interview: how to improve throughput and timeliness in delayed task scenarios!
ASP. Net core 6 framework unveiling example demonstration [02]: application development based on routing, MVC and grpc
Nasvit: neural architecture search of efficient visual converter with gradient conflict perception hypernetwork training
The base value is too large (the error is marked as "08") [duplicate] - value too great for base (error token is'08') [duplicate]
Do you really understand relays?
com.fasterxml.jackson.databind.exc.InvalidFormatException问题
MySql实战45讲【行锁】
后管中编辑与预览获取表单的值写法
Last update time of all sqlserver tables
MySql实战45讲【全局锁和表锁】
二维数组中的元素求其存储地址
一文带你了解 ZigBee
Find the storage address of the elements in the two-dimensional array
C # general interface call
[C语言]给账号密码进行MD5加密









