forked from rems-project/asl-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
dune-project
43 lines (39 loc) · 1.17 KB
/
dune-project
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
(lang dune 2.8)
(name asli)
(version 0.2.0)
(using menhir 2.0)
(package
(name asli)
(synopsis "Interpreter for Arm's Architecture Specification Language (ASL)")
(description "\| Interpreter for the language ASL that Arm uses to write their ISA specifications.
"\|
"\| Currently supports reading/typechecking the specification,
"\| interactive execution of ASL statements and expressions,
"\| executing opcodes one at a time,
"\| loading ELF files and executing Arm binaries.
)
(depends
("ocaml" (>= "4.14"))
("menhir" :build)
("ott" (and :build (>= "0.31")))
"linenoise"
"pprint"
"zarith"
("z3" (>= "4.8.7"))
("alcotest" :with-test)
"ppx_blob"
"lwt"
"cohttp-lwt-unix"
"yojson"
"mlbdd"
)
)
(license BSD-3-Clause)
(authors "Alastair Reid")
(maintainers "Alastair Reid <[email protected]>")
(source (github alastairreid/asl-interpreter))
(bug_reports "https://github.com/alastairreid/asl-interpreter/issues")
(homepage "https://github.com/alastairreid/asl-interpreter")
; (documentation ...)
(generate_opam_files true)
(cram enable)