We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe23fd3 commit 2489176Copy full SHA for 2489176
build.sh
@@ -20,12 +20,8 @@ which python
20
python --version
21
22
# download LLVM source code
23
-rm -rf llvm
24
-mkdir llvm
25
-wget https://github.com/llvm/llvm-project/releases/download/llvmorg-$LLVM_VERSION/llvm-project-$LLVM_VERSION.src.tar.xz
26
-# workaround for msys2 (`tar xf file.tar.xz` hangs): https://github.com/msys2/MSYS2-packages/issues/1548
27
-xz -dc llvm-project-$LLVM_VERSION.src.tar.xz | tar -x --file=-
28
-cd llvm-project-$LLVM_VERSION.src/llvm
+git clone -b $LLVM_VERSION --depth 1 https://github.com/llvm/llvm-project.git
+cd llvm-project/llvm
29
30
# make build dir and run cmake
31
mkdir build
0 commit comments