summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Anderson2019-01-15 16:00:25 +0000
committerAndrew Anderson2019-01-15 16:00:25 +0000
commitacfc64cb264ce445d3e0540f013f140dbf16398f (patch)
treedf8c253cea4c3e2a87b259258a20a6383781cdb4
parentc58b94b9e363144a876f0d2b46a71ebc43b08e98 (diff)
downloadaur-acfc64cb264ce445d3e0540f013f140dbf16398f.tar.gz
Fix CFLAGS
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a0857f3a9203..7217651f9749 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = aarch64-linux-gnu-openblas-lapack-openmp
pkgdesc = Optimized BLAS library based on GotoBLAS2 1.13 BSD (providing blas, lapack, and cblas)
pkgver = 0.3.4
- pkgrel = 4
+ pkgrel = 5
url = http://www.openblas.net/
arch = any
license = BSD
diff --git a/PKGBUILD b/PKGBUILD
index 591904ad622a..cd760ccd2529 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,7 +9,7 @@ _pkgname=openblas
pkgver=0.3.4
# grep VERSION "${srcdir}/${_PkgName}-${pkgver}"/lapack-netlib/README.md | tail -n 1 | cut -d ' ' -f 2
_lapackver=3.8.0
-pkgrel=4
+pkgrel=5
pkgdesc="Optimized BLAS library based on GotoBLAS2 1.13 BSD (providing blas, lapack, and cblas)"
arch=('any')
url="http://www.openblas.net/"
@@ -32,7 +32,7 @@ _config="HOSTCC=gcc CC=aarch64-linux-gnu-gcc CROSS=1 TARGET=ARMV8 BINARY=64 \
build(){
cd "${srcdir}/${_PkgName}-${pkgver}"
- make ${_config} CFLAGS="-Os -mtune=generic" libs netlib shared static
+ make ${_config} CFLAGS="-mtune=generic" libs netlib shared static
}
check(){