3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-14 09:56:15 +00:00

updated README

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-30 11:29:07 -07:00
parent 0289a58d8a
commit 01d784b557

18
README
View file

@ -5,13 +5,9 @@ Z3 can be built using Visual Studio Command Prompt and make/g++.
1) Building Z3 on Windows using Visual Studio Command Prompt 1) Building Z3 on Windows using Visual Studio Command Prompt
a) If you a source distribution that comes with pre-generated 'build' directory, python scripts/mk_make.py
then go to step c) cd build
b) Execute nmake
python scripts/mk_make.py
c) Execute
cd build
nmake
2) Building Z3 using make/g++ and Python 2) Building Z3 using make/g++ and Python
Execute: Execute:
@ -23,11 +19,13 @@ Execute:
make make
sudo make install sudo make install
It will install z3 executable at /usr/local/bin, libraries at /usr/local/lib, and include files at /usr/local/include. It will install z3 executable at /usr/bin, libraries at /usr/lib, and include files at /usr/include.
Use the following commands to install in a different prefix (e.g., /usr). You can change the installation p
Use the following commands to install in a different prefix (e.g., /home/leo).
autoconf autoconf
./configure --prefix=/usr ./configure --prefix=/home
python scripts/mk_make.py python scripts/mk_make.py
cd build cd build
make make