最新的编译环境搭建已经更新了,如果repo sync 后无法编译通过请,参考
搭建系统基础环境
https://device.harmonyos.com/cn/docs/start/introduce/oem_build_os_env-0000001121152509
Hi3516搭建环境https://device.harmonyos.com/cn/docs/start/introduce/oem_quickstart_3516_environment-0000001054501981
这边更新你的ubuntu编译环境。
附上编译遇到的问题,及处理方式
这个问题是默认的python版本不对引起的,需要执行以下命令
将以下命令中的 "python3.8-path" 替换为 "which python3.8" 命令执行后的回显路径
- cd /usr/bin && sudo rm python && sudo rm python3 && sudo ln -s <font size="4" color="Red">python3.8-path</font> python && sudo ln -s <font size="4" color="Red">python3.8-path</font> python3 && python3 --version
复制代码