Skip to content
Snippets Groups Projects
Commit 88a66e28 authored by Martin Larralde's avatar Martin Larralde
Browse files

Disable detection of CPU float behaviour in `setup.py`

parent b2627eb0
No related branches found
No related tags found
No related merge requests found
......@@ -623,11 +623,11 @@ class configure(_build_clib):
raise RuntimeError("failed to compile platform-specific code, aborting.")
# check zeroing mode for SSE code
if self.hmmer_impl == "SSE":
if self._check_denormals_zero_mode():
defines["HAVE_DENORMALS_ZERO_MODE"] = 1
if self._check_flush_zero_mode():
defines["HAVE_FLUSH_ZERO_MODE"] = 1
# if self.hmmer_impl == "SSE":
# if self._check_denormals_zero_mode():
# defines["HAVE_DENORMALS_ZERO_MODE"] = 1
# if self._check_flush_zero_mode():
# defines["HAVE_FLUSH_ZERO_MODE"] = 1
# fill the defines if headers are found
headers = headers or []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment