[arch-commits] Commit in gf2x/trunk (PKGBUILD)

Antonio Rojas arojas at archlinux.org
Mon Nov 2 10:53:06 UTC 2015


    Date: Monday, November 2, 2015 @ 11:53:05
  Author: arojas
Revision: 145581

Disable pclmul, should fix illegal instruction errors on some CPUs

Modified:
  gf2x/trunk/PKGBUILD

----------+
 PKGBUILD |   11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2015-11-02 10:34:48 UTC (rev 145580)
+++ PKGBUILD	2015-11-02 10:53:05 UTC (rev 145581)
@@ -3,19 +3,18 @@
 
 pkgname=gf2x
 pkgver=1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A library for multiplying polynomials over the binary field"
-arch=('i686' 'x86_64')
+arch=(i686 x86_64)
 url="http://gforge.inria.fr/projects/gf2x/"
-license=('GPL' 'LGPL')
-depends=('glibc')
-options=('!libtool')
+license=(GPL LGPL)
+depends=(glibc)
 source=("http://gforge.inria.fr/frs/download.php/30873/gf2x-1.1.tar.gz")
 md5sums=('d9ce3a0d8cb6be50e3a1ff6d90be669f')
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-sse2 CFLAGS="$CFLAGS -msse2"
+  ./configure --prefix=/usr --enable-sse2 --disable-pclmul CFLAGS="$CFLAGS -msse2"
   make
 }
 



More information about the arch-commits mailing list