mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
cygwin support
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
3cf96f7475
commit
a159943669
|
@ -30,6 +30,10 @@ Version 4.2
|
|||
- Z3 by default switches to an incremental solver when a Solver object is used to solve many queries.
|
||||
In the this version, we switch back to the tactic framework if the incremental solver returns "unknown".
|
||||
|
||||
- Now, Z3 can be compiled inside cygwin using gcc.
|
||||
|
||||
- Fixed bug in the unsat core generation.
|
||||
|
||||
First source code release (October 2, 2012)
|
||||
===========================================
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifdef _CYGWIN
|
||||
// Hack to make CreateTimerQueueTimer available on cygwin
|
||||
#define _WIN32_WINNT 0x0600
|
||||
#endif
|
||||
|
||||
#include"z3_exception.h"
|
||||
#include"z3_omp.h"
|
||||
#if defined(_WINDOWS) || defined(_CYGWIN)
|
||||
|
|
|
@ -22,6 +22,10 @@ Revision History:
|
|||
#include<time.h>
|
||||
#include<signal.h>
|
||||
#include"stopwatch.h"
|
||||
#ifdef _CYGWIN
|
||||
#undef min
|
||||
#undef max
|
||||
#endif
|
||||
#include"front_end_params.h"
|
||||
#include"datalog_parser.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
|
|
Loading…
Reference in a new issue