diff options
| author | Gaëtan Gilbert | 2019-07-05 15:01:26 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2019-08-24 12:11:54 +0200 |
| commit | 3083b2dcd9da8108df8118be2bc87f955311d2bd (patch) | |
| tree | 1a0d3fce208d87aff0c7e160d301aa4386f1a099 /kernel/dune | |
| parent | 07c4c8cac353883a2c6ae493556b9b544f3f38c0 (diff) | |
Simplify picking between uint63_63.ml and uint63_31.ml
- remove the architecture component (we don't do anything
arch-specific so it was just a rewording of int_size)
- have configure tell the make build system about int_size instead of
reimplementing cp
As a bonus, add the copyright header to uint63.mli.
Diffstat (limited to 'kernel/dune')
| -rw-r--r-- | kernel/dune | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/dune b/kernel/dune index 4038bf5638..5f7502ef6b 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_i386_31 uint63_amd64_63 write_uint63)) + (modules (:standard \ genOpcodeFiles uint63_31 uint63_63)) (libraries lib byterun dynlink)) (executable @@ -16,7 +16,7 @@ (rule (targets uint63.ml) - (deps (:gen-file uint63_%{ocaml-config:architecture}_%{ocaml-config:int_size}.ml)) + (deps (:gen-file uint63_%{ocaml-config:int_size}.ml)) (action (copy# %{gen-file} %{targets}))) (documentation |
