Gentoo Archives: gentoo-commits

From: Stephen Klimaszewski <steev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/criu/
Date: Mon, 04 Jul 2016 19:05:46
Message-Id: 1467659089.3129d67a8391aa393e56622410f0d94d61259bde.steev@gentoo
1 commit: 3129d67a8391aa393e56622410f0d94d61259bde
2 Author: Steev Klimaszewski <steev <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 4 19:04:49 2016 +0000
4 Commit: Stephen Klimaszewski <steev <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 19:04:49 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3129d67a
7
8 sys-process/criu: Fix passing arch to fix build on arm64
9
10 Upstream wants to do the aarch64 replacement themselves, so don't pass aarch64
11 in the ebuild, otherwise we end up with the following type error:
12
13 make -j8 -l10 CC=aarch64-unknown-linux-gnu-gcc LD=aarch64-unknown-linux-gnu-ld OBJCOPY=aarch64-unknown-linux-gnu-objcopy LIBDIR=/usr/lib64 ARCH=aarch64 V=1 WERROR=0 DEBUG=0 SETPROCTITLE=no PYCRIU=no all docs
14 Makefile:29: *** "The architecture aarch64 isn't supported". Stop.
15
16 Package-Manager: portage-2.3.0
17
18 sys-process/criu/criu-2.3.ebuild | 1 -
19 1 file changed, 1 deletion(-)
20
21 diff --git a/sys-process/criu/criu-2.3.ebuild b/sys-process/criu/criu-2.3.ebuild
22 index 971a670..d67ab07 100644
23 --- a/sys-process/criu/criu-2.3.ebuild
24 +++ b/sys-process/criu/criu-2.3.ebuild
25 @@ -47,7 +47,6 @@ criu_arch() {
26 # criu infers the arch from $(uname -m). We never want this to happen.
27 case ${ARCH} in
28 amd64) echo "x86";;
29 - arm64) echo "aarch64";;
30 *) echo "${ARCH}";;
31 esac
32 }