Skip to content
Snippets Groups Projects
Commit 513fb7db authored by Mike Sullivan's avatar Mike Sullivan Committed by Jakub Jirutka
Browse files

community/R: fix build failure on ppc64le - run make with -j1

Add -j1 option to make command to avoid segfaults on cocurrent R binary
invocations during build.
parent 2fecb6a0
No related branches found
Tags v2.7.0_rc2
No related merge requests found
......@@ -6,8 +6,7 @@ pkgver=3.4.3
pkgrel=0
pkgdesc="Language and environment for statistical computing"
url="https://www.r-project.org"
# ppc64le: segfaults in build since 3.4.3
arch="all !s390x !ppc64le"
arch="all !s390x"
license="GPL-2 GPL-3 LGPL-2.1"
depends="$pkgname-mathlib"
depends_dev="gcc gfortran icu-dev libjpeg-turbo libpng-dev make openblas-dev
......@@ -53,8 +52,8 @@ build() {
--with-tcltk \
--with-x
make
make -C src/nmath/standalone
make -j1
make -j1 -C src/nmath/standalone
}
# TODO: Run provided test suite.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment