mirror of
https://github.com/leanprover/lean4.git
synced 2026-03-17 18:34:06 +00:00
10 lines
189 B
Bash
Executable File
10 lines
189 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source ../common.sh
|
|
|
|
compile_lean_c_backend
|
|
# Then check the LLVM version
|
|
if lean_has_llvm_support; then
|
|
echo "running LLVM program..."
|
|
compile_lean_llvm_backend
|
|
fi
|