forked from GillianPlatform/CompCert
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.69 KB
/
package.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "compcert",
"version": "3.7",
"description": "Esy packaging for CompCert",
"license": "INRIA Non-Commercial License Agreement",
"esy": {
"buildEnv": {
"COQBIN": "#{@opam/coq.bin}/",
"COQLIB": "#{@opam/coq.lib}/coq/",
"COQPATH": "#{coq-flocq.install}/coq"
},
"build": [
["./configure", "x86_64-#{os}", "--prefix", "#{self.install}", "--coqdevdir", "#{self.install}/coq/compcert"],
["make", "-j", "4"],
["make", "install"]
],
"buildsInSource": true,
"exportedEnv": {
"COMPCERT_CONFIG": {
"val": "#{self.target_dir}/compcert.ini",
"scope": "global"
}
}
},
"scripts": {
"utop": "dune utop --root=_esy/default/build",
"extract": "./compileUtils/extract.sh"
},
"dependencies": {
"@opam/menhir": "*",
"ocaml": "4.14.x",
"@opam/dune": "^2.9",
"@opam/coq": ">=8.9.0 <=8.13.2",
"@opam/menhir": "*",
"coq-flocq": "3.4.2"
},
"devDependencies": {
"@opam/merlin": "*",
"@opam/utop": "*",
"@opam/odoc": "*",
"ocaml": "4.14.x",
"@opam/coq": "8.13.2",
"@opam/depgraph": "*"
},
"resolutions": {
"coq-flocq": {
"source": "git:https://gitlab.inria.fr/flocq/flocq.git#63ae222c9125a42a44c706c9cbf04709cfaaedf2",
"override": {
"dependencies": {
"ocaml": "*",
"@opam/coq": "*"
},
"buildEnv": {
"HOME": "#{self.target_dir}",
"COQBIN": "#{@opam/coq.bin}",
"COQLIB": "#{@opam/coq.lib}/coq/",
"COQPATH": "#{@opam/coq.lib}/coq/user-contrib/",
"COQUSERCONTRIB": "#{self.install}/coq/",
"DESTDIR": ""
},
"build": [
["autoconf"],
["./configure"],
["./remake", "--jobs=2"],
["./remake", "install"]
]
}
}
}
}