diff options
Diffstat (limited to 'kernel/dune')
| -rw-r--r-- | kernel/dune | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/kernel/dune b/kernel/dune index 01abdb8f67..79161519ba 100644 --- a/kernel/dune +++ b/kernel/dune @@ -3,7 +3,7 @@ (synopsis "The Coq Kernel") (public_name coq.kernel) (wrapped false) - (modules_without_implementation cinstr nativeinstr) + (modules (:standard \ uint63_x86 uint63_amd64 write_uint63)) (libraries lib byterun)) (rule @@ -11,6 +11,16 @@ (deps (:h-file byterun/coq_instruct.h) make-opcodes) (action (run ./make_opcodes.sh %{h-file} %{targets}))) +(executable + (name write_uint63) + (modules write_uint63) + (libraries unix)) + +(rule + (targets uint63.ml) + (deps (:gen ./write_uint63.exe) uint63_x86.ml uint63_amd64.ml) + (action (run %{gen}))) + (documentation (package coq)) |
