代码拉取完成,页面将自动刷新
同步操作将从 mamingshuai/openharmony_oneclick_env_init 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/bin/bash
baseDirForScriptSelf=$(cd "$(dirname "$0")"; pwd)
source ${baseDirForScriptSelf}/source.sh
# 安装gn
source ${baseDirForScriptSelf}/proxy.sh
DownLoad_URL=https://repo.huaweicloud.com/harmonyos/compiler/gcc_riscv32/7.3.0/linux/gcc_riscv32-linux-7.3.0.tar.gz
file_name=`basename ${DownLoad_URL}`
cd ${work_dir}
if [ ! -f "${work_dir}/${file_name}" ];then
wget –-no-check-certificate "${DownLoad_URL}" >>${baseDirForScriptSelf}/init_run.log 2>&1
check_line=$((LINENO-1))
if [ $? -gt 0 ];then
push_error "${check_line}" "gcc_riscv32 download failed,please check!" "1"
else
check_sha256 "${DownLoad_URL}" "${work_dir}/${file_name}"
fi
fi
if [ -d ~/gcc_riscv32 ];then
mv ~/gcc_riscv32 ~/gcc_riscv32_bak_${unix_time}
fi
mkdir ~/gcc_riscv32
tar -zxf ${work_dir}/gcc_riscv32-linux-7.3.0.tar.gz -C ~/gcc_riscv32 >>${baseDirForScriptSelf}/init_run.log 2>&1
BIN_FILE=`find ~/gcc_riscv32 -maxdepth 5 -type f -name 'riscv32-unknown-elf-gcc'`
BIN_PATH=`dirname ${BIN_FILE}`
sudo bash -c "echo 'export PATH=${BIN_PATH}:\$PATH' >/etc/profile.d/gcc_riscv32.sh"
source /etc/profile
source /etc/profile.d/gcc_riscv32.sh
gcc_riscv32_version=`riscv32-unknown-elf-gcc --version|grep riscv32`
if [ $? -gt 0 ];then
echo -e "${failed_color},gcc_riscv32 install failed.Please check!"
exit 1
else
echo -e "${success_color},gcc_riscv32 install success.Revision:${gcc_riscv32_version}"
fi
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。