From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3F461139083 for ; Sun, 10 Dec 2017 11:58:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52B0BE1042; Sun, 10 Dec 2017 11:58:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1F77DE1042 for ; Sun, 10 Dec 2017 11:58:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 420EE33BEBE for ; Sun, 10 Dec 2017 11:58:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F5C6AE6F for ; Sun, 10 Dec 2017 11:58:38 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1512907091.5c449e3567541b3cc1a02ac28e87d3e8084a8d68.heroxbd@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: 5c449e3567541b3cc1a02ac28e87d3e8084a8d68 X-VCS-Branch: master Date: Sun, 10 Dec 2017 11:58:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 97c883dc-b9c1-4794-b45a-e8fb9c972cd7 X-Archives-Hash: ced62bcfcd0ed1bdccee33fea06a3591 commit: 5c449e3567541b3cc1a02ac28e87d3e8084a8d68 Author: Benda Xu gentoo org> AuthorDate: Sun Dec 10 11:57:14 2017 +0000 Commit: Benda XU gentoo org> CommitDate: Sun Dec 10 11:58:11 2017 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=5c449e35 bootstrap-prefix.sh: support bootstraping for aarch64. scripts/bootstrap-prefix.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 1059b15c68..06227ad812 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -370,6 +370,9 @@ bootstrap_setup() { powerpc64-unknown-linux-gnu) profile="prefix/${linux}/ppc64${legacy}" ;; + aarch64-unknown-linux-gnu) + profile="prefix/${linux}/arm64${legacy}" + ;; armv7l-pc-linux-gnu) profile="prefix/${linux}/arm${legacy}" ;; @@ -2555,7 +2558,7 @@ if [[ -z ${CHOST} ]]; then ppc*) CHOST="`uname -m | sed -e 's/^ppc/powerpc/'`-unknown-linux-gnu" ;; - powerpc*) + powerpc*|aarch64*) CHOST="`uname -m`-unknown-linux-gnu" ;; *)