Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1652692 > unrolled thread

[PATCH] perf tools: Add missing powerpc triplet

Started byKim Phillips <kim.phillips@arm.com>
First post2017-05-29 21:30 +0200
Last post2017-06-07 18:10 +0200
Articles 3 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] perf tools:  Add missing powerpc triplet Kim Phillips <kim.phillips@arm.com> - 2017-05-29 21:30 +0200
    Re: [PATCH] perf tools:  Add missing powerpc triplet Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-06-02 16:40 +0200
    [tip:perf/urgent] perf annotate: Add missing powerpc triplet tip-bot for Kim Phillips <tipbot@zytor.com> - 2017-06-07 18:10 +0200

#1652692 — [PATCH] perf tools: Add missing powerpc triplet

FromKim Phillips <kim.phillips@arm.com>
Date2017-05-29 21:30 +0200
Subject[PATCH] perf tools: Add missing powerpc triplet
Message-ID<tMywy-4rU-7@gated-at.bofh.it>
On an Ubuntu xenial system, perf annotate says to install powerpc
objdump on a system that already has binutils-powerpc-linux-gnu
installed.  Make perf aware of the missing triplet for the
powerpc-linux-gnu target.

Signed-off-by: Kim Phillips <kim.phillips@arm.com>
Cc: Ravi Bangoria <ravi.bangoria@linux.vnet.ibm.com>
---
 tools/perf/arch/common.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/perf/arch/common.c b/tools/perf/arch/common.c
index 837067f48a4c..6b40e9f01740 100644
--- a/tools/perf/arch/common.c
+++ b/tools/perf/arch/common.c
@@ -26,6 +26,7 @@ const char *const arm64_triplets[] = {
 
 const char *const powerpc_triplets[] = {
 	"powerpc-unknown-linux-gnu-",
+	"powerpc-linux-gnu-",
 	"powerpc64-unknown-linux-gnu-",
 	"powerpc64-linux-gnu-",
 	"powerpc64le-linux-gnu-",
-- 
2.11.0

[toc] | [next] | [standalone]


#1656302

FromArnaldo Carvalho de Melo <acme@kernel.org>
Date2017-06-02 16:40 +0200
Message-ID<tNVU5-2oY-7@gated-at.bofh.it>
In reply to#1652692
Em Mon, May 29, 2017 at 02:27:54PM -0500, Kim Phillips escreveu:
> On an Ubuntu xenial system, perf annotate says to install powerpc
> objdump on a system that already has binutils-powerpc-linux-gnu
> installed.  Make perf aware of the missing triplet for the
> powerpc-linux-gnu target.
> 
> Signed-off-by: Kim Phillips <kim.phillips@arm.com>
> Cc: Ravi Bangoria <ravi.bangoria@linux.vnet.ibm.com>

Thanks, applied.

- Arnaldo

[toc] | [prev] | [next] | [standalone]


#1659965 — [tip:perf/urgent] perf annotate: Add missing powerpc triplet

Fromtip-bot for Kim Phillips <tipbot@zytor.com>
Date2017-06-07 18:10 +0200
Subject[tip:perf/urgent] perf annotate: Add missing powerpc triplet
Message-ID<tPLGX-rD-37@gated-at.bofh.it>
In reply to#1652692
Commit-ID:  6db47fdec7562b02703e346c10f7f4efdda6af5a
Gitweb:     http://git.kernel.org/tip/6db47fdec7562b02703e346c10f7f4efdda6af5a
Author:     Kim Phillips <kim.phillips@arm.com>
AuthorDate: Mon, 29 May 2017 14:27:54 -0500
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Mon, 5 Jun 2017 14:18:02 -0300

perf annotate: Add missing powerpc triplet

On an Ubuntu xenial system, 'perf annotate' says to install powerpc
objdump on a system that already has binutils-powerpc-linux-gnu
installed.  Make perf aware of the missing triplet for the
powerpc-linux-gnu target.

Signed-off-by: Kim Phillips <kim.phillips@arm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: He Kuang <hekuang@huawei.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ravi Bangoria <ravi.bangoria@linux.vnet.ibm.com>
Link: http://lkml.kernel.org/r/20170529142754.7fbfb1152fd8f2663de0ea70@arm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/arch/common.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/perf/arch/common.c b/tools/perf/arch/common.c
index 837067f..6b40e9f 100644
--- a/tools/perf/arch/common.c
+++ b/tools/perf/arch/common.c
@@ -26,6 +26,7 @@ const char *const arm64_triplets[] = {
 
 const char *const powerpc_triplets[] = {
 	"powerpc-unknown-linux-gnu-",
+	"powerpc-linux-gnu-",
 	"powerpc64-unknown-linux-gnu-",
 	"powerpc64-linux-gnu-",
 	"powerpc64le-linux-gnu-",

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web