aboutsummaryrefslogtreecommitdiff
path: root/kernel/dune
diff options
context:
space:
mode:
authorcoqbot-app[bot]2020-10-14 08:42:14 +0000
committerGitHub2020-10-14 08:42:14 +0000
commit411025844a4c005ce03d77c6c640807c28269d4a (patch)
treee949e2d259253020368d0ea4b4d45d8ceeecaafa /kernel/dune
parent9fa5174bac92de63bceae2c4e9ef70fab93198fd (diff)
parent6fe8c44ff828ef4ec89b49ada634ce87639f384f (diff)
Merge PR #13147: Use OCaml floating-point operations on 64 bits arch
Reviewed-by: erikmd Reviewed-by: silene
Diffstat (limited to 'kernel/dune')
-rw-r--r--kernel/dune7
1 files changed, 6 insertions, 1 deletions
diff --git a/kernel/dune b/kernel/dune
index ce6fdc03df..bd663974da 100644
--- a/kernel/dune
+++ b/kernel/dune
@@ -3,7 +3,7 @@
(synopsis "The Coq Kernel")
(public_name coq.kernel)
(wrapped false)
- (modules (:standard \ genOpcodeFiles uint63_31 uint63_63))
+ (modules (:standard \ genOpcodeFiles uint63_31 uint63_63 float64_31 float64_63))
(libraries lib byterun dynlink))
(executable
@@ -19,6 +19,11 @@
(deps (:gen-file uint63_%{ocaml-config:int_size}.ml))
(action (copy# %{gen-file} %{targets})))
+(rule
+ (targets float64.ml)
+ (deps (:gen-file float64_%{ocaml-config:int_size}.ml))
+ (action (copy# %{gen-file} %{targets})))
+
(documentation
(package coq))