当前位置: 移动技术网 > 网络运营>服务器>Linux > 全志 Allwinner V3S 开发环境搭建 (二)安装必要工具

全志 Allwinner V3S 开发环境搭建 (二)安装必要工具

2020年10月23日  | 移动技术网网络运营  | 我要评论
1、libncurses5-devsudo apt-get install libncurses5-devmake menuconfig配置工程时用到2、GITsudo apt-get install git下载github仓库时使用3、arm-linux-gnueabihf编译工具链下载:wget https://releases.linaro.org/components/toolchain/binaries/latest/arm-linux-gnueabihf/gcc-lin.

1、libncurses5-dev

sudo apt-get install libncurses5-dev
make menuconfig 配置工程时用到

2、GIT

sudo apt-get install git
下载github仓库时使用

3、arm-linux-gnueabihf编译工具链

下载:
wget https://releases.linaro.org/components/toolchain/binaries/latest/arm-linux-gnueabihf/gcc-linaro-6.3.1-2017.05-x86_64_arm-linux-gnueabihf.tar.xz

tar xvf gcc-linaro-6.3.1-2017.05-x86_64_arm-linux-gnueabihf.tar.xz    解压
mv gcc-linaro-6.3.1-2017.05-x86_64_arm-linux-gnueabihf /opt/    移动到/opt/文件夹下
vim /etc/bash.bashrc                    修改配置文件
gedit /etc/bash.bashrc                    修改配置文件
PATH="$PATH:/opt/gcc-linaro-6.3.1-2017.05-x86_64_arm-linux-gnueabihf/bin"        配置文件中最后添加
source /etc/bash.bashrc                    使配置文件生效
arm-linux-gnueabihf-gcc -v                    查看是否安装成功

4、device-tree-compiler设备树

sudo apt-get install device-tree-compiler
编译linux设备树时用到

5、g++设备树

sudo apt-get install g++
编译文件系统时时用到

6、Visual Studio Code

下载地址:https://code.visualstudio.com/
sudo dpkg -i code_1.50.1-1602600906_amd64.deb
编写代码,浏览代码,修改代码

7、gparted

sudo apt  install  gparted 或 Ubuntu 软件中心安装
分区工具,创建SD卡系统时用

 

(后期补充其它。。。。)

本文地址:https://blog.csdn.net/cnicfhnui/article/details/109149977

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网