Skip to content

Commit 3e5212b

Browse files
committed
get required third-party deps
1 parent 4da2354 commit 3e5212b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ mkdir cmake
3232
wget https://github.com/llvm/llvm-project/releases/download/llvmorg-$LLVM_VERSION/cmake-$LLVM_VERSION.src.tar.xz
3333
xz -dc cmake-$LLVM_VERSION.src.tar.xz | tar -x --file=-
3434
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/.
3541
cd llvm
3642

3743
# make build dir and run cmake

0 commit comments

Comments
 (0)