summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorAlexander Phinikarides2016-11-20 23:01:33 +0200
committerAlexander Phinikarides2016-11-20 23:01:33 +0200
commit1d91b7f93433c8944b7f4d81832dc9cf626938cf (patch)
tree7bfd3a1a0c250451bf960ac6058d195a19a486ed /PKGBUILD
parent956bd05623fef7b871ba9972efce9f99a540be68 (diff)
downloadaur-1d91b7f93433c8944b7f4d81832dc9cf626938cf.tar.gz
fix quantreg and igraph compilation
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD8
1 files changed, 6 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 348fa6114b8f..896c808bdf11 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=r-mkl
pkgver=3.3.2
-pkgrel=2
+pkgrel=3
pkgdesc="Language and environment for statistical computing and graphics, linked with Intel's MKL."
arch=('x86_64')
license=('GPL')
@@ -103,7 +103,11 @@ build() {
-lifport \
-lpthread \
-lm \
- -ldl"
+ -ldl \
+ -lifcore \
+ -lifport"
+ # Including -lifcore and -lifport twice fixes
+ # compilation of some R packages (e.g. quantreg, igraph)
export CC="icc"
export CXX="icpc"