X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx12.valuehost.ru (mx12.valuehost.ru [217.112.42.215]) by lists.alpinelinux.org (Postfix) with ESMTP id 8B4C95C666B for ; Wed, 14 Nov 2018 00:12:01 +0000 (GMT) Received: from mx7.valuehost.ru (unknown [127.0.0.255]) by mx12.valuehost.ru (Postfix) with ESMTP id F08A5622B6 for ; Wed, 14 Nov 2018 03:12:00 +0300 (MSK) From: alpine-mips-patches Date: Tue, 13 Nov 2018 21:03:05 +0000 Subject: [alpine-aports] [PATCH] main/orc: disable tests on mips* To: alpine-aports@lists.alpinelinux.org Message-Id: <20181114001200.F08A5622B6@mx12.valuehost.ru> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: ORC generates MIPS DSP Module Rev2 code which is not supported by Alpine mips* definitions. Keep pkgrel intact since other architectures are unaffected by this change. --- main/orc/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/orc/APKBUILD b/main/orc/APKBUILD index 807be59e8f..9259f9a467 100644 --- a/main/orc/APKBUILD +++ b/main/orc/APKBUILD @@ -15,7 +15,8 @@ builddir="$srcdir/$pkgname-$pkgver" case "$CARCH" in # FIXME: Test exec_opcodes_sys fails on armhf. - arm*) options="!check";; + # FIXME: MIPS DSP Module Rev2 is required for tests on mips*. + arm*|mips*) options="!check";; esac build() { -- 2.19.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---