summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorYann Leprince2017-11-22 11:50:58 +0100
committerYann Leprince2017-11-22 11:50:58 +0100
commitacba0ecfa3f2ea4b61a0edb420df1ccf01c00336 (patch)
tree7ec87e2fb2448d18c5bf05a4f20d7549de8a1e06 /PKGBUILD
parentc119e71f17e741dacfa3e5b2566c9286f3df49e1 (diff)
downloadaur-acba0ecfa3f2ea4b61a0edb420df1ccf01c00336.tar.gz
simplify PKGBUILD by dropping support for 32-bit i686
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD11
1 files changed, 1 insertions, 10 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 7372af3f81cd..6cb4db62f734 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@ pkgname=blitz
pkgver=1.0.1
pkgrel=1
pkgdesc="C++ Class library for scientific computing"
-arch=('i686' 'x86_64')
+arch=('x86_64')
url="https://github.com/blitzpp/blitz"
# The user is free to choose the license among ('Artistic2.0' 'BSD' 'LGPL3'),
# but we cannot express it here so we only mention the most permissive.
@@ -25,15 +25,6 @@ build() {
local _conditional_options
cd "$pkgname-$pkgver"
- if [ "$CARCH" = "x86_64" ]; then
- _conditional_options=--enable-64bit
- else
- # According to this bug report on
- # https://bugs.launchpad.net/ubuntu/+source/blitz++/+bug/1213144
- # we have to use --enable-simd-width=8
- _conditional_options=--enable-simd-width=8
- fi
-
# Fortran is needed for benchmarks only
./configure \
--prefix=/usr \