3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-20 04:43:39 +00:00

MSYS2 and cmake based compilation support for clang and gcc

This commit is contained in:
Philipp Paulweber 2019-04-12 14:52:00 +02:00
parent a9faf6c4ab
commit 5708379ebc
No known key found for this signature in database
GPG key ID: DAF035D73D07C984
3 changed files with 20 additions and 2 deletions

View file

@ -39,6 +39,10 @@ Revision History:
#include "util/file_path.h"
#include "shell/lp_frontend.h"
#if defined( _WINDOWS ) && defined( __MINGW32__ ) && ( defined( __GNUG__ ) || defined( __clang__ ) )
#include <crtdbg.h>
#endif
typedef enum { IN_UNSPECIFIED, IN_SMTLIB_2, IN_DATALOG, IN_DIMACS, IN_WCNF, IN_OPB, IN_LP, IN_Z3_LOG, IN_MPS } input_kind;
static std::string g_aux_input_file;