-
Notifications
You must be signed in to change notification settings - Fork 3
/
labrys.opam
38 lines (38 loc) · 1.05 KB
/
labrys.opam
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
opam-version: "2.0"
synopsis: "A toy language based on LLVM that implements the System Fω type-system"
license: "MIT"
maintainer: "Kate <[email protected]>"
authors: "Kate <[email protected]>"
homepage: "https://github.com/kit-ty-kate/labrys"
dev-repo: "git://github.com/kit-ty-kate/labrys.git"
bug-reports: "https://github.com/kit-ty-kate/labrys/issues"
build: ["dune" "build" "-p" name "-j" jobs]
run-test: ["dune" "runtest" "-p" name "-j" jobs]
depends: [
"ocaml" {>= "4.04"}
"dune" {>= "2.8"}
"dune-site" {>= "2.8"}
"menhir"
"base-unix"
"cmdliner" {>= "1.1.0"}
"pprint"
"re" {>= "1.9.0"}
"msgpack"
"uutf" {>= "1.0.0"}
"llvm" {>= "3.8"}
"llvm" {with-test & = "11.0.0"} # Modify also $LLC in the cram tests if changed
"containers" {>= "3.0"}
"containers-data" {>= "3.0"}
]
available: [
arch != "s390x" & # TODO: Look into why the tests segfault
os-distribution != "centos" # TODO: fix conf-llvm.12.0.0 (Unable to find a match: llvm12-devel)
]
tags: [
"compiler"
"System F"
"System Fω"
"llvm"
"type-system"
"language"
]