Open
Description
Expected Behavior
After updating to the latest macOS (Version 13.3 (22E252)) today and latest dune version (3.7.0), running dune build
produces the error 'Error: write(): Operation timed out' for me.
Reproduction
Below is the content of my dune file:
(executable
(public_name platypus)
(name toplevel)
(libraries
platypus
llvm
llvm.analysis
llvm.executionengine
llvm.bitwriter
ctypes.foreign))
(rule
(target scanner.ml)
(deps scanner.mll)
(action
(chdir
%{workspace_root}
(run %{bin:ocamllex} -q -o %{target} %{deps}))))
(rule
(targets parser.ml parser.mli)
(deps parser.mly)
(action
(chdir
%{workspace_root}
(run %{bin:ocamlyacc} -v %{deps}))))