3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-13 01:16:15 +00:00

small change to be able to test java example on linux

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-11-29 09:13:24 -08:00
parent 30905da58c
commit 001c8487e9
2 changed files with 8 additions and 3 deletions

View file

@ -6,5 +6,10 @@ To build the example execute
in the build directory.
It will create JavaExample.class in the build directory,
which can be run via
java -cp com.microsoft.z3.jar;. JavaExample
which can be run on Windows via
java -cp com.microsoft.z3.jar;. JavaExample
On Linux and FreeBSD, we must use
LD_LIBRARY_PATH=. java -cp com.microsoft.z3.jar:. JavaExample