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 aa0b683 commit 436f5b3Copy full SHA for 436f5b3
build.sh
@@ -26,6 +26,10 @@ wget https://github.com/llvm/llvm-project/releases/download/llvmorg-$LLVM_VERSIO
26
# workaround for msys2 (`tar xf file.tar.xz` hangs): https://github.com/msys2/MSYS2-packages/issues/1548
27
xz -dc llvm-$LLVM_VERSION.src.tar.xz | tar -x --file=-
28
mv llvm-$LLVM_VERSION.src/* llvm
29
+# get required *build-time only* cmake modules that are separately packaged
30
+wget https://github.com/llvm/llvm-project/releases/download/llvmorg-$LLVM_VERSION/cmake-$LLVM_VERSION.src.tar.xz
31
+xz -dc cmake-$LLVM_VERSION.src.tar.xz | tar -x --file=-
32
+mv cmake-$LLVM_VERSION.src/Modules/* llvm/cmake/modules/.
33
cd llvm
34
35
# make build dir and run cmake
0 commit comments