-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathlakefile.toml
50 lines (39 loc) · 1.08 KB
/
lakefile.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name = "SSA"
precompileModules = true # Ensure that reflective code that uses native_decide runs compiled code, not in the ir_interpreter.
defaultTargets = ["SSA"]
[[require]]
name = "mathlib"
git = "https://github.com/leanprover-community/mathlib4"
rev = "nightly-testing-2025-01-28"
[[require]]
name = "Cli"
git = "https://github.com/mhuisi/lean4-cli.git"
rev = "nightly"
[[require]]
name = "leanwuzla"
git = "https://github.com/hargoniX/Leanwuzla.git"
rev = "main"
[[lean_lib]]
name = "SSA"
[[lean_lib]]
name = "AliveExamples"
roots = ["SSA.Projects.InstCombine.AliveAutoGenerated"]
[[lean_lib]]
name = "AliveStatements"
roots = ["SSA.Projects.InstCombine.AliveStatements"]
[[lean_lib]]
name = "AliveScaling"
roots = ["SSA.Projects.InstCombine.ScalingTest"]
[[lean_exe]]
name = "mlirnatural"
root = "SSA.MLIRNatural"
[[lean_exe]]
name = "bv-circuit-profile"
root = "SSA.Experimental.Bits.Fast.Profile"
[[lean_exe]]
name = "opt"
root = "SSA.Projects.InstCombine.LLVM.Opt"
supportInterpreter = true
[[lean_exe]]
name = "ssaLLVMEnumerator"
root = "SSA.Projects.InstCombine.LLVM.Enumerator"