3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00
Find a file
Leonardo de Moura adc2c659e1 removed tst file
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-10-09 01:37:56 -07:00
c++ other components 2012-10-02 11:48:48 -07:00
dll removed unnecessary files. 2012-10-05 15:19:26 -07:00
lib Fixed memory smash 2012-10-09 01:36:42 -07:00
maxsat removed unnecessary files. 2012-10-05 15:19:26 -07:00
Microsoft.Z3 missing file 2012-10-02 14:43:20 -07:00
Microsoft.Z3V3 removed unnecessary files. 2012-10-05 15:19:26 -07:00
ml Removed unnecessary files. They were accidently added. 2012-10-04 10:34:18 -07:00
python Added missing files 2012-10-03 18:11:56 -07:00
shell removed unnecessary files. 2012-10-05 15:19:26 -07:00
test removed unnecessary files. 2012-10-05 15:19:26 -07:00
test_capi removed unnecessary files. 2012-10-05 15:19:26 -07:00
test_managed Added missing file 2012-10-02 12:55:24 -07:00
configure.in other components 2012-10-02 11:48:48 -07:00
LICENSE.txt Licence 2012-10-02 16:03:02 -07:00
Makefile.in Making sure Z3 compiles with gcc 4.7.1. Making sure 'make release' works. Temporarily removed iz3 and ocaml bindings from 'make release' script. Removed test_user_theory from 'make release' script. 2012-10-03 18:32:56 -07:00
README other components 2012-10-02 11:48:48 -07:00
update-version.sh other components 2012-10-02 11:48:48 -07:00
update_api.cmd disable build.cmd from update_api.cmd 2012-10-02 13:51:20 -07:00
update_api.sh update_api script for Linux/OSX 2012-10-02 14:49:14 -07:00
update_api.txt Added documentation for update_api.sh 2012-10-02 14:27:12 -07:00
z3-prover.sln other components 2012-10-02 11:48:48 -07:00

Z3 is a theorem prover from Microsoft Research.
Z3 is licensed under MSR-LA (Microsoft Research License Agreement). 
See http://z3.codeplex.com/license for more information about this license.
Z3 can be built using Visual Studio Command Prompt, Visual Studio and make/gcc.

1) Building Z3 on Windows using Visual Studio Command Prompt

- Open a Visual Studio Command Prompt, then execute one of the following commands to build the desired component.

- For building all components, execute
    msbuild z3-prover.sln /p:configuration=external 
  All components will be located at /external

- For building all components (64-bit), execute
    msbuild z3-prover.sln /p:configuration=external_64 /p:platform=x64
  All components will be located at /external_64

- For building all components (in debug mode), execute
    msbuild z3-prover.sln 
  All components will be located at /debug

1) Building Z3 using g++/make
Your machine must also have the following commands to be able to build Z3:
autoconf, sed, awk, dos2unix commands


- Open a shell
- For building the z3 executable, execute
 
  autoconf
  ./configure
  make

The z3 executable will be located at bin/external/

- If you want a static library for Z3

  make a

- If you also want the z3 shared library, execute

  make so

  for libz3.so (on Linux)

  make dylib

  for libz3.dylib (on OSX)

Remark: the Z3 makefile imports the source file list from Visual Studio project files.
To add new source files to the Z3 core, you must include them at: lib/lib.vcxproj