mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
fpflags
This commit is contained in:
parent
f3789e21a3
commit
3821eb4134
|
@ -279,10 +279,13 @@ def test_gmp(cc):
|
||||||
|
|
||||||
|
|
||||||
def test_fpmath(cc):
|
def test_fpmath(cc):
|
||||||
global FPMATH_FLAGS
|
global FPMATH_FLAGS, IS_ARCH_ARM64, IS_OSX
|
||||||
if FPMATH_ENABLED == "False":
|
if FPMATH_ENABLED == "False":
|
||||||
FPMATH_FLAGS=""
|
FPMATH_FLAGS=""
|
||||||
return "Disabled"
|
return "Disabled"
|
||||||
|
if IS_ARCH_ARM64 and IS_OSX:
|
||||||
|
FPMATH_FLAGS = ""
|
||||||
|
return "Disabled-ARM64"
|
||||||
if is_verbose():
|
if is_verbose():
|
||||||
print("Testing floating point support...")
|
print("Testing floating point support...")
|
||||||
t = TempFile('tstsse.cpp')
|
t = TempFile('tstsse.cpp')
|
||||||
|
|
Loading…
Reference in a new issue