Files
revive/clone-llvm.sh
T
Sebastian Miasojed 5ac67bdc0d Initial wasm support
2024-08-29 17:28:31 +02:00

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