mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Java API Cleanup
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
6e159bd442
commit
cc99e96786
|
@ -1,7 +1,5 @@
|
||||||
### This is work-in-progress and does not work yet.
|
A small example using the Z3 Java bindings.
|
||||||
|
To build the example, configure Z3 with the --java option to scripts/mk_make.py, build via
|
||||||
Small example using the Z3 Java bindings.
|
|
||||||
To build the example execute
|
|
||||||
make examples
|
make examples
|
||||||
in the build directory.
|
in the build directory.
|
||||||
|
|
||||||
|
@ -11,5 +9,5 @@ which can be run on Windows via
|
||||||
|
|
||||||
On Linux and FreeBSD, we must use
|
On Linux and FreeBSD, we must use
|
||||||
LD_LIBRARY_PATH=. java -cp com.microsoft.z3.jar:. JavaExample
|
LD_LIBRARY_PATH=. java -cp com.microsoft.z3.jar:. JavaExample
|
||||||
|
On OSX, the corresponding option is DYLD_LIBRARY_PATH:
|
||||||
|
DYLD_LIBRARY_PATH=. java -cp com.microsoft.z3.jar:. JavaExample
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
Java bindings
|
Java bindings
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
The Java bindings will be included in the Z3 build if it is configured with
|
||||||
|
the option --java to python scripts/mk_make.py. This will produce the
|
||||||
|
com.microsoft.z3.jar package in the build directory.
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
Manifest-Version: 1.0
|
Manifest-Version: 1.0
|
||||||
Created-By: 4.3.0 (Microsoft Research LTD.)
|
Created-By: 4.3.2 (Microsoft Research LTD.)
|
||||||
|
|
Loading…
Reference in a new issue