mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-26 21:40:44 +00:00
21 lines
367 B
Bash
21 lines
367 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
LLVM_VERSION='10.0.0'
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ -d llvm ]; then
|
||
|
rm -rf llvm
|
||
|
fi
|
||
|
git clone --depth 1 https://github.com/llvm/llvm-project.git -b "llvmorg-${LLVM_VERSION}" llvm
|
||
|
|
||
|
cd llvm
|
||
|
|
||
|
patch -p1 < ../cocotron-styling.patch
|
||
|
|
||
|
mkdir build
|
||
|
cd build
|
||
|
|
||
|
cmake -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS=clang -G 'Unix Makefiles' ../llvm
|
||
|
make -j$(nproc) clang-format
|