3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 18:31:49 +00:00

build fix for cygwin/mingw

This commit is contained in:
Christoph M. Wintersteiger 2016-06-24 13:57:53 +01:00
parent e3a41d0d98
commit 1fb672121c

View file

@ -604,7 +604,7 @@ elif os.name == 'posix':
IS_OPENBSD=True
elif os.uname()[0][:6] == 'CYGWIN':
IS_CYGWIN=True
if ("mingw" in CC):
if (CC != None and "mingw" in CC):
IS_CYGWIN_MINGW=True
def display_help(exit_code):