diff options
author | tmpfile <tmpfile@users.noreply.github.com> | 2017-06-18 16:03:17 -0300 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-06-20 11:39:22 +0000 |
commit | d8bd8fafd7963bddc3ce52c7daf6b52b86029de6 (patch) | |
tree | 362bd20953de31efd49b12298fdb5da54612b5e4 | |
parent | 64a8542a96158d30d0e21fdd7586b1a8007cbc26 (diff) | |
download | aports-d8bd8fafd7963bddc3ce52c7daf6b52b86029de6.tar.bz2 aports-d8bd8fafd7963bddc3ce52c7daf6b52b86029de6.tar.xz |
community/suitesparse: build at -O3
The bug that prevented this has been fixed upstream.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71505
-rw-r--r-- | community/suitesparse/APKBUILD | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/community/suitesparse/APKBUILD b/community/suitesparse/APKBUILD index 8fed850e6a..68b6847cd2 100644 --- a/community/suitesparse/APKBUILD +++ b/community/suitesparse/APKBUILD @@ -3,7 +3,7 @@ pkgname=suitesparse _pkgname=SuiteSparse pkgver=4.5.5 -pkgrel=0 +pkgrel=1 pkgdesc="A collection of sparse matrix libraries" url="http://faculty.cse.tamu.edu/davis/suitesparse.html" arch="all !s390x" @@ -23,9 +23,6 @@ prepare() { # OpenBLAS provides also LAPACK. export LAPACK="-lopenblas" - # gcc fails on internal error when using default -O3. - export OPTIMIZATION="-O2" - # Do not include the Partition module and METIS (it's optional and # Julia doesn't need it). export CFLAGS="$CFLAGS -DNPARTITION" |