mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
making sure that Z3 can be compiled with cygwin/g++
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
ad107bfc42
commit
4dc834d5ee
10
configure.in
10
configure.in
|
@ -47,7 +47,15 @@ AS_IF([test "$host_os" = "Darwin"], [
|
||||||
SLIBFLAGS="-shared -fopenmp"
|
SLIBFLAGS="-shared -fopenmp"
|
||||||
COMP_VERSIONS=
|
COMP_VERSIONS=
|
||||||
STATIC_FLAGS=-static
|
STATIC_FLAGS=-static
|
||||||
], [
|
], [test "${host_os:0:6}" = "CYGWIN"], [
|
||||||
|
PLATFORM=win
|
||||||
|
SO_EXT=dll
|
||||||
|
LDFLAGS=
|
||||||
|
SLIBFLAGS="-shared -fopenmp"
|
||||||
|
COMP_VERSIONS=
|
||||||
|
STATIC_FLAGS=-static
|
||||||
|
],
|
||||||
|
[
|
||||||
AC_MSG_ERROR([Unknown host platform: $host_os])
|
AC_MSG_ERROR([Unknown host platform: $host_os])
|
||||||
])
|
])
|
||||||
AC_SUBST(PLATFORM)
|
AC_SUBST(PLATFORM)
|
||||||
|
|
Loading…
Reference in a new issue