From c53746c33c4fc5f152dc7cdd5b5383889ea6414f Mon Sep 17 00:00:00 2001 From: liangxinyan Date: Mon, 7 Apr 2025 15:05:04 +0800 Subject: [PATCH] modify llvm-project download method Signed-off-by: liangxinyan --- rust_build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rust_build.sh b/rust_build.sh index 4233845d560..bc13427fc81 100644 --- a/rust_build.sh +++ b/rust_build.sh @@ -23,8 +23,7 @@ pushd $CURRENT_DIR > /dev/null wget https://repo.huaweicloud.com/harmonyos/compiler/rust/1.84.0/cargo-1.84.0-x86_64-unknown-linux-gnu.tar.xz wget https://repo.huaweicloud.com/harmonyos/compiler/rust/1.84.0/rustc-1.84.0-x86_64-unknown-linux-gnu.tar.xz popd > /dev/null - git clone https://gitee.com/openharmony/third_party_llvm-project.git -b llvm-19-merge-asan - tar -zxf third_party_llvm-project/llvmorg-19.1.7.tar.gz -C src/llvm-project/ + git clone https://gitee.com/li-ke1067/llvm.git -b llvmorg-19.1.7 src/llvm-project/ rm -rf src/llvm-project/.git # 获取rust_src包 wget https://repo.huaweicloud.com/harmonyos/compiler/rust/1.85.0/rust_src_1.85.0.tar.gz -- Gitee