Hello, i am new to MacOS and the project builds on Linux OS but after moving to MacOS, everything is installed well, ocaml is working but the project does not build of this error.
I looked over the library in the folders were it is installed and there multiple binary files and nocrypto.mli but there is no nocrypto.ml file.
i included all the stanza in the dune file but it won’t work. I don’t understand and I didn’t find anything to solve the problem on internet up now, maybe i have to search deeper.
I also made a simple project to try it and the results is the same.
Here is the main project:
let x = Nocrypto.Base64.is_base64_char 'a';;
Printf.printf "Result of: %s" (string_of_bool x);;
(executable
(public_name ocaml_test)
(name main)
(libraries ocaml_test decimal nocrypto))
denisgruiax@192 ocaml_test % dune build
File "_none_", line 1:
Error: No implementations provided for the following modules:
Nocrypto referenced from bin/.main.eobjs/native/dune__exe__Main.cmx
denisgruiax@192 ocaml_test %