mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 10:18:02 +00:00
7 lines
206 B
Bash
Executable File
7 lines
206 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Clone LLVM 18 (any revision after commit bd32aaa is supposed to work)
|
|
if [ ! -d "llvm-project" ]; then
|
|
git clone --depth 1 --branch release/18.x https://github.com/llvm/llvm-project.git
|
|
fi
|