aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/llvm8/APKBUILD6
1 files changed, 4 insertions, 2 deletions
diff --git a/main/llvm8/APKBUILD b/main/llvm8/APKBUILD
index 26d5ca2456..e9ec184400 100644
--- a/main/llvm8/APKBUILD
+++ b/main/llvm8/APKBUILD
@@ -15,8 +15,8 @@ url="https://llvm.org/"
license="NCSA"
depends_dev="$pkgname=$pkgver-r$pkgrel"
makedepends="binutils-dev chrpath cmake libffi-dev paxmark python3 zlib-dev
- libxml2-dev"
-checkdepends="bash py3-setuptools"
+ libxml2-dev py3-setuptools"
+checkdepends="bash"
subpackages="$pkgname-static $pkgname-libs $pkgname-dev $pkgname-test-utils:_test_utils"
source="https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver/llvm-$pkgver.src.tar.xz
0001-Disable-dynamic-lib-tests-for-musl-s-dlclose-is-noop.patch
@@ -29,8 +29,10 @@ builddir="$srcdir/$_pkgname-$pkgver.src"
# ARM has few failures in test suite that we don't care about currently and
# also it takes forever to run them on the builder.
+# MIPS as well...
case "$CARCH" in
arm*) options="$options !check";;
+ mips*) options="$options !check";;
esac
# Whether is this package the default (latest) LLVM version.