[med-svn] [libpll] 01/01: Always disable AVX and SSE on i386 - needs to be discussed with upstream
    Andreas Tille 
    tille at debian.org
       
    Fri May  5 14:07:03 UTC 2017
    
    
  
This is an automated email from the git hooks/post-receive script.
tille pushed a commit to branch master
in repository libpll.
commit 015e57e2e4867abf2c663e73e171db87ff7d7713
Author: Andreas Tille <tille at debian.org>
Date:   Fri May 5 16:06:43 2017 +0200
    Always disable AVX and SSE on i386 - needs to be discussed with upstream
---
 debian/changelog | 2 ++
 debian/rules     | 8 +++++++-
 2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/debian/changelog b/debian/changelog
index 27601a6..e8d3c51 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,8 @@ libpll (0.0+20160909+ds1-2) UNRELEASED; urgency=medium
 
   * Check for HAVE_X86INTRIN_H
     Closes: #861754
+  * Always disable AVX and SSE on i386
+    Closes: #861755
 
  -- Andreas Tille <tille at debian.org>  Thu, 04 May 2017 16:57:55 +0200
 
diff --git a/debian/rules b/debian/rules
index ffc729d..4e7a315 100755
--- a/debian/rules
+++ b/debian/rules
@@ -9,7 +9,13 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
 
 override_dh_auto_configure:
 	./autogen.sh
-	dh_auto_configure
+ifeq ($(DEB_BUILD_ARCH),i386)
+	./autogen.sh --disable-avx --disable-sse
+	dh_auto_configure -- --disable-avx --disable-sse
+else
+	./autogen.sh --disable-avx
+	dh_auto_configure -- --disable-avx
+endif
 
 override_dh_install:
 	dh_install
-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/libpll.git
    
    
More information about the debian-med-commit
mailing list