From 88a66e28fb45dbaf545a2c78642223c3306952c4 Mon Sep 17 00:00:00 2001 From: Martin Larralde <martin.larralde@embl.de> Date: Tue, 8 Oct 2024 16:35:43 +0200 Subject: [PATCH] Disable detection of CPU float behaviour in `setup.py` --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 4f2f8050..e68647b6 100644 --- a/setup.py +++ b/setup.py @@ -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 [] -- GitLab