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 4da2354 commit 3e5212bCopy full SHA for 3e5212b
build.sh
@@ -32,6 +32,12 @@ mkdir cmake
32
wget https://github.com/llvm/llvm-project/releases/download/llvmorg-$LLVM_VERSION/cmake-$LLVM_VERSION.src.tar.xz
33
xz -dc cmake-$LLVM_VERSION.src.tar.xz | tar -x --file=-
34
mv cmake-$LLVM_VERSION.src/* cmake/.
35
+# get required third party code that is separately packaged
36
+rm -rf third-party
37
+mkdir third-party
38
+wget https://github.com/llvm/llvm-project/releases/download/llvmorg-$LLVM_VERSION/third-party-$LLVM_VERSION.src.tar.xz
39
+xz -dc third-party-$LLVM_VERSION.src.tar.xz | tar -x --file=-
40
+mv third-party-$LLVM_VERSION.src/* third-party/.
41
cd llvm
42
43
# make build dir and run cmake
0 commit comments