3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
z3/src/api/ml
Nikolaj Bjorner a432fd71d3 update ocaml doc per #2843
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2020-01-06 20:26:06 -08:00
..
META.in Removed incorrect include directories flag in ocaml META file 2019-10-25 18:05:13 -07:00
README ML API build fixes for Windows. 2015-12-14 14:41:19 +00:00
z3.ml fix ocaml build by moving to Zarith methods 2019-10-14 09:48:51 -07:00
z3.mli update ocaml doc per #2843 2020-01-06 20:26:06 -08:00
z3native.ml.pre Translate correctly between OCaml option values and NULL pointers 2016-04-04 17:16:15 +02:00
z3native_stubs.c.pre Change error message from "internal failure" to "Object allocation failed" 2018-12-11 12:09:22 +00:00
z3native_stubs.h more fixes for mutexes in shell 2019-06-19 16:42:00 +01:00

This is the new ML API introduced with Z3 4.4. For the legacy bindings, please 
refer to previous releases of Z3.

On Windows, there are no less than four different ports of OCaml. The Z3 build 
system assumes that either the win32 or the win64 port is installed. This means
that OCaml will use `cl' as the underlying C compiler and not the cygwin or
mingw compilers.

OCamlfind: When ocamlfind is found, the `install' target will install the Z3
OCaml bindings into the ocamlfind site-lib directory. The installed package is
linked against the (dynamic) libz3 and it adds $(PREFIX)/lib to the library
include paths. On Windows, there is no $(PREFIX), so the build directory is
used instead (see META.in).