3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00

Fixed MSYS/MinGW build. Fixes #1335.

This commit is contained in:
Christoph M. Wintersteiger 2017-11-11 16:38:53 +00:00
parent 45975bec65
commit 7c63a5cc1d
2 changed files with 3 additions and 3 deletions

View file

@ -2510,8 +2510,8 @@ def mk_config():
SO_EXT = '.dll'
SLIBFLAGS = '-shared'
elif sysname.startswith('MSYS_NT') or sysname.startswith('MINGW'):
CXXFLAGS = '%s' % CXXFLAGS
OS_DEFINES = ''
CXXFLAGS = '%s -D_MINGW' % CXXFLAGS
OS_DEFINES = '-D_MINGW'
SO_EXT = '.dll'
SLIBFLAGS = '-shared'
EXE_EXT = '.exe'

View file

@ -550,7 +550,7 @@ void interpolation_options_struct::apply(iz3base &b){
// On linux and mac, unlimit stack space so we get recursion
#if defined(_WINDOWS) || defined(_CYGWIN)
#if defined(_WINDOWS) || defined(_CYGWIN) || defined(_MINGW)
#else