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