赞
踩
sudo dpkg-reconfigure dash
输入密码,然后tab选择否,确认
查看是否链接成功
sudo apt install python3-pip
pip install -i https://mirrors.ustc.edu.cn/pypi/web/simple pip -U
pip config set global.index-url https://mirrors.ustc.edu.cn/pypi/web/simple
sudo apt-get install build-essential gcc g++ make zlib* libffi-dev e2fsprogs pkg-config flex bison perl bc openssl libssl-dev libelf-dev libc6-dev binutils binutils-dev libdwarf-dev u-boot-tools mtd-utils gcc-arm-linux-gnueabi cpio device-tree-compiler git git-lfs ruby ccache
安装hb(编译OH需要使用该指令)
python3 -m pip install --user ohos-build
配置环境变量安装vim工具
sudo apt install vim
修改配置文件
vim ~/.bashrc
在末尾添加,保存修改,并退出输入命令,
export PATH=~/.local/bin:$PATH
更新环境变量
source ~/.bashrc
hb -h
查看hb安装成功否
pip3 install scons
scon -v,检查SCons安装成功否
pip3 install pycryptodome
pip3 install six --upgrade --ignore-installed six
pip3 install ecdsa
- wget https://repo.huaweicloud.com/harmonyos/compiler/gcc_riscv32/7.3.0/linux/gcc_riscv32-linux-7.3.0.tar.gz
- tar -xvf gcc_riscv32-linux-7.3.0.tar.gz -C ~
配置gcc环境变量
vim ~/.bashrc
配置文件末尾插入
export PATH=~/gcc_riscv32/bin:$PATH
保存退出,更新环境变量
source ~/.bashrc
检查GCC安装
riscv32-unknown-elf-gcc -v
至此OH编译环境安装完成。
注册码云gitee账号。
安装git客户端和git-lfs
配置用户信息,如下。
git config --global user.name "yourname"
git config --global user.email "your-email-address"
git config --global credential.helper store
安装curl
sudo apt install curl
下载repo
curl -s https://gitee.com/oschina/repo/raw/fork_flow/repo-py3>repo
sudo mv repo /usr/local/bin/repo
sudo chmod a+x /usr/local/bin/repo
通过repo + https下载(相对简单)
- repo init -u https://gitee.com/openharmony/manifest.git -b refs/tags/OpenHarmony-v3.1-Release --no-repo-verify
- repo sync -c
- repo forall -c 'git lfs pull'
如果前面安装hb的时候出现错误: “please call hb utilities inside source root directory”
解决方法如下
1.卸载当前版本的hb
python3 -m pip uninstall ohos-build
2.切换到OpenHarmony的根目录,然后执行命令,安装对应版本的hb
pip3 install build/lite
hb set
执行hb set,选择对应的编译Hi3516DV300
执行hb env可查看
$hb env
[OHOS INFO] root path: /home/OpenHarmony
[OHOS INFO] board: hi3516dv300
[OHOS INFO] kernel: linux
[OHOS INFO] product: Hi3516DV300
[OHOS INFO] product path: /home/OpenHarmony/productdefine/common/products
[OHOS INFO] device path: device/board/hisilicon/hispark_taurus/linux
[OHOS INFO] device company: hisilicon
执行
hb build
或者
./build.sh --product-name Hi3516DV300 --ccache
即可以执行,等待到完成
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。