X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx7.valuehost.ru (mx7.valuehost.ru [217.112.42.214]) by lists.alpinelinux.org (Postfix) with ESMTP id C6C465C6370 for ; Sat, 15 Sep 2018 22:22:25 +0000 (GMT) Received: from mx7.valuehost.ru (localhost.valuehost.ru [127.0.0.1]) by mx7.valuehost.ru (Postfix) with ESMTP id 211512E054 for ; Sun, 16 Sep 2018 01:22:25 +0300 (MSK) From: alpine-mips-patches Subject: [alpine-aports] [PATCH] main/pcre2: disable jit on mips* for now To: alpine-aports@lists.alpinelinux.org Message-Id: <20180915222225.211512E054@mx7.valuehost.ru> Date: Sun, 16 Sep 2018 01:22:25 +0300 (MSK) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: 10.31 fails JIT-enabled tests on mipsel at least. 10.32 fixes the problem so this change should be reverted on upgrade. --- main/pcre2/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/pcre2/APKBUILD b/main/pcre2/APKBUILD index 88ba622dda..7529a1680e 100644 --- a/main/pcre2/APKBUILD +++ b/main/pcre2/APKBUILD @@ -15,7 +15,7 @@ source="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$pkgname-$pkgver.t builddir="$srcdir/$pkgname-$pkgver" case "$CARCH" in - s390x) _enable_jit="";; + mips* | s390x) _enable_jit="";; *) _enable_jit="--enable-jit";; esac -- 2.19.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---