mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
Fixed MSYS/MinGW build. Fixes #1335.
This commit is contained in:
parent
45975bec65
commit
7c63a5cc1d
2 changed files with 3 additions and 3 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue