From 3f26b2a530a805a1cb0b2da1dc807fb9a3b46238 Mon Sep 17 00:00:00 2001 From: Sonja Heinze Date: Fri, 17 Jun 2022 13:50:39 +0200 Subject: [PATCH] Disable building of tools on <4.14 Just for now that we don't need tools to generate the 5.0 AST... --- tools/dune | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/dune b/tools/dune index 120fb651..5139e6a5 100644 --- a/tools/dune +++ b/tools/dune @@ -5,7 +5,10 @@ (executable (name gencopy) - (enabled_if (>= %{ocaml_version} 4.13)) + (enabled_if + (and + (>= %{ocaml_version} 4.13) + (< %{ocaml_version} 4.14))) (modules gencopy) (libraries compiler-libs.common compiler-libs.bytecomp) (flags :standard -w -3))