public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] perf: Fix libdw-dev package name in error message
@ 2010-04-26 14:27 Stefan Hajnoczi
  2010-04-26 16:13 ` Arnaldo Carvalho de Melo
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Stefan Hajnoczi @ 2010-04-26 14:27 UTC (permalink / raw)
  To: linux-kernel
  Cc: Tom Zanussi, Frederic Weisbecker, Arnaldo Carvalho de Melo,
	Ingo Molnar, Paul Mackerras, Peter Zijlstra, Masami Hiramatsu,
	Stefan Hajnoczi

The headers required for DWARF support are provided by the libdw-dev
package in Debian-based distros.  This patch corrects the elfutils-dev
package name to libdw-dev in the Makefile error message when libdw.h is
not found.

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
I don't think any distro has an elfutils-dev package but the name was chosen because of the usual RedHat/Debian -devel/-dev convention.

 tools/perf/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index bc0f670..66c525b 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -505,7 +505,7 @@ else
 endif
 
 ifneq ($(shell sh -c "(echo '\#include <dwarf.h>'; echo '\#include <libdw.h>'; echo 'int main(void) { Dwarf *dbg; dbg = dwarf_begin(0, DWARF_C_READ); return (long)dbg; }') | $(CC) -x c - $(ALL_CFLAGS) -I/usr/include/elfutils -ldw -lelf -o $(BITBUCKET) $(ALL_LDFLAGS) $(EXTLIBS) "$(QUIET_STDERR)" && echo y"), y)
-	msg := $(warning No libdw.h found or old libdw.h found, disables dwarf support. Please install elfutils-devel/elfutils-dev);
+	msg := $(warning No libdw.h found or old libdw.h found, disables dwarf support. Please install elfutils-devel/libdw-dev);
 	BASIC_CFLAGS += -DNO_DWARF_SUPPORT
 else
 	BASIC_CFLAGS += -I/usr/include/elfutils
-- 
1.7.0


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] perf: Fix libdw-dev package name in error message
  2010-04-26 14:27 [PATCH] perf: Fix libdw-dev package name in error message Stefan Hajnoczi
@ 2010-04-26 16:13 ` Arnaldo Carvalho de Melo
  2010-04-26 16:32 ` Valdis.Kletnieks
  2010-04-27 12:59 ` [tip:perf/core] perf tools: " tip-bot for Stefan Hajnoczi
  2 siblings, 0 replies; 7+ messages in thread
From: Arnaldo Carvalho de Melo @ 2010-04-26 16:13 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: linux-kernel, Tom Zanussi, Frederic Weisbecker, Ingo Molnar,
	Paul Mackerras, Peter Zijlstra, Masami Hiramatsu

Em Mon, Apr 26, 2010 at 03:27:03PM +0100, Stefan Hajnoczi escreveu:
> The headers required for DWARF support are provided by the libdw-dev
> package in Debian-based distros.  This patch corrects the elfutils-dev
> package name to libdw-dev in the Makefile error message when libdw.h is
> not found.
> 
> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>

Thanks, applied

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] perf: Fix libdw-dev package name in error message
  2010-04-26 14:27 [PATCH] perf: Fix libdw-dev package name in error message Stefan Hajnoczi
  2010-04-26 16:13 ` Arnaldo Carvalho de Melo
@ 2010-04-26 16:32 ` Valdis.Kletnieks
  2010-04-27 12:59 ` [tip:perf/core] perf tools: " tip-bot for Stefan Hajnoczi
  2 siblings, 0 replies; 7+ messages in thread
From: Valdis.Kletnieks @ 2010-04-26 16:32 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: linux-kernel, Tom Zanussi, Frederic Weisbecker,
	Arnaldo Carvalho de Melo, Ingo Molnar, Paul Mackerras,
	Peter Zijlstra, Masami Hiramatsu

[-- Attachment #1: Type: text/plain, Size: 908 bytes --]

On Mon, 26 Apr 2010 15:27:03 BST, Stefan Hajnoczi said:
> The headers required for DWARF support are provided by the libdw-dev
> package in Debian-based distros.  This patch corrects the elfutils-dev
> package name to libdw-dev in the Makefile error message when libdw.h is
> not found.
> 
> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
> ---
> I don't think any distro has an elfutils-dev package but the name was chosen 
> because of the usual RedHat/Debian -devel/-dev convention.

elfutils-dev is wrong, elfutils-devel is right, at least for Fedora.

% repoquery -ql elfutils-devel.x86_64
/usr/include/dwarf.h
/usr/include/elfutils
/usr/include/elfutils/elf-knowledge.h
/usr/include/elfutils/libasm.h
/usr/include/elfutils/libdw.h
/usr/include/elfutils/libdwfl.h
/usr/include/elfutils/libebl.h
/usr/include/elfutils/version.h
/usr/lib64/libasm.so
/usr/lib64/libdw.so
/usr/lib64/libebl.a


[-- Attachment #2: Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [tip:perf/core] perf tools: Fix libdw-dev package name in error message
  2010-04-26 14:27 [PATCH] perf: Fix libdw-dev package name in error message Stefan Hajnoczi
  2010-04-26 16:13 ` Arnaldo Carvalho de Melo
  2010-04-26 16:32 ` Valdis.Kletnieks
@ 2010-04-27 12:59 ` tip-bot for Stefan Hajnoczi
  2010-04-27 13:48   ` Valdis.Kletnieks
  2 siblings, 1 reply; 7+ messages in thread
From: tip-bot for Stefan Hajnoczi @ 2010-04-27 12:59 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: acme, linux-kernel, paulus, hpa, mingo, tzanussi, a.p.zijlstra,
	fweisbec, stefanha, tglx, mhiramat, mingo

Commit-ID:  f93830fbb06b67848c762f2177c06cc3cbb97deb
Gitweb:     http://git.kernel.org/tip/f93830fbb06b67848c762f2177c06cc3cbb97deb
Author:     Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
AuthorDate: Mon, 26 Apr 2010 15:39:54 -0300
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Mon, 26 Apr 2010 15:39:54 -0300

perf tools: Fix libdw-dev package name in error message

The headers required for DWARF support are provided by the libdw-dev
package in Debian-based distros.  This patch corrects the elfutils-dev
package name to libdw-dev in the Makefile error message when libdw.h is
not found.

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Masami Hiramatsu <mhiramat@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <1272292023-9869-1-git-send-email-stefanha@linux.vnet.ibm.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/perf/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index e8bf2e1..3ac6b67 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -504,7 +504,7 @@ PERFLIBS = $(LIB_FILE)
 
 ifndef NO_DWARF
 ifneq ($(shell sh -c "(echo '\#include <dwarf.h>'; echo '\#include <libdw.h>'; echo 'int main(void) { Dwarf *dbg; dbg = dwarf_begin(0, DWARF_C_READ); return (long)dbg; }') | $(CC) -x c - $(ALL_CFLAGS) -I/usr/include/elfutils -ldw -lelf -o $(BITBUCKET) $(ALL_LDFLAGS) $(EXTLIBS) "$(QUIET_STDERR)" && echo y"), y)
-	msg := $(warning No libdw.h found or old libdw.h found, disables dwarf support. Please install elfutils-devel/elfutils-dev);
+	msg := $(warning No libdw.h found or old libdw.h found, disables dwarf support. Please install elfutils-devel/libdw-dev);
 	NO_DWARF := 1
 endif # Dwarf support
 endif # NO_DWARF

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [tip:perf/core] perf tools: Fix libdw-dev package name in error message
  2010-04-27 12:59 ` [tip:perf/core] perf tools: " tip-bot for Stefan Hajnoczi
@ 2010-04-27 13:48   ` Valdis.Kletnieks
  2010-04-27 15:00     ` Arnaldo Carvalho de Melo
  0 siblings, 1 reply; 7+ messages in thread
From: Valdis.Kletnieks @ 2010-04-27 13:48 UTC (permalink / raw)
  To: mingo, hpa, paulus, linux-kernel, acme, tzanussi, a.p.zijlstra,
	fweisbec, stefanha, tglx, mhiramat, mingo
  Cc: linux-tip-commits

[-- Attachment #1: Type: text/plain, Size: 1033 bytes --]

On Tue, 27 Apr 2010 12:59:19 -0000, tip-bot for Stefan Hajnoczi said:
> Commit-ID:  f93830fbb06b67848c762f2177c06cc3cbb97deb
> Gitweb:     http://git.kernel.org/tip/f93830fbb06b67848c762f2177c06cc3cbb97deb
> Author:     Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
> AuthorDate: Mon, 26 Apr 2010 15:39:54 -0300
> Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
> CommitDate: Mon, 26 Apr 2010 15:39:54 -0300
> 
> perf tools: Fix libdw-dev package name in error message
> 
> The headers required for DWARF support are provided by the libdw-dev
> package in Debian-based distros.

Not all the world is Debian based.  As I mentioned before, the package needed
is elfutils-devel on Redhat/Fedora systesm.  For those boxes, you're changing a
'elfutil-dev' that the user can guess is supposed to be -devel, to a package
that doesn't exist on Redhat/Fedora.  And to compound it, if the user guesses
that you meant libdwarf-devel, that still fails, because that does *not*
provide the libdw.h header - that's still in elfutil-devel.


[-- Attachment #2: Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [tip:perf/core] perf tools: Fix libdw-dev package name in error message
  2010-04-27 13:48   ` Valdis.Kletnieks
@ 2010-04-27 15:00     ` Arnaldo Carvalho de Melo
  2010-04-27 21:57       ` Masami Hiramatsu
  0 siblings, 1 reply; 7+ messages in thread
From: Arnaldo Carvalho de Melo @ 2010-04-27 15:00 UTC (permalink / raw)
  To: Valdis.Kletnieks
  Cc: mingo, hpa, paulus, linux-kernel, tzanussi, a.p.zijlstra,
	fweisbec, stefanha, tglx, mhiramat, mingo, linux-tip-commits

Em Tue, Apr 27, 2010 at 09:48:20AM -0400, Valdis.Kletnieks@vt.edu escreveu:
> On Tue, 27 Apr 2010 12:59:19 -0000, tip-bot for Stefan Hajnoczi said:
> > Commit-ID:  f93830fbb06b67848c762f2177c06cc3cbb97deb
> > Gitweb:     http://git.kernel.org/tip/f93830fbb06b67848c762f2177c06cc3cbb97deb
> > Author:     Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
> > AuthorDate: Mon, 26 Apr 2010 15:39:54 -0300
> > Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
> > CommitDate: Mon, 26 Apr 2010 15:39:54 -0300
> > 
> > perf tools: Fix libdw-dev package name in error message
> > 
> > The headers required for DWARF support are provided by the libdw-dev
> > package in Debian-based distros.
> 
> Not all the world is Debian based.  As I mentioned before, the package needed
> is elfutils-devel on Redhat/Fedora systesm.  For those boxes, you're changing a
> 'elfutil-dev' that the user can guess is supposed to be -devel, to a package
> that doesn't exist on Redhat/Fedora.  And to compound it, if the user guesses
> that you meant libdwarf-devel, that still fails, because that does *not*
> provide the libdw.h header - that's still in elfutil-devel.

It works for Red Hat, the message is:

        msg := $(warning No libdw.h found or old libdw.h found, disables dwarf support. Please install elfutils-devel/libdw-dev);

And, as you say:

[acme@doppio git]$ rpm -ql elfutils-devel
/usr/include/dwarf.h
/usr/include/elfutils
/usr/include/elfutils/elf-knowledge.h
/usr/include/elfutils/libasm.h
/usr/include/elfutils/libdw.h
/usr/include/elfutils/libdwfl.h
/usr/include/elfutils/libebl.h
/usr/include/elfutils/version.h
/usr/lib64/libasm.so
/usr/lib64/libdw.so
/usr/lib64/libebl.a
[acme@doppio git]$

	If you have a better phrasing to avoid such misunderstandings,
please send a patch.

- Arnaldo

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [tip:perf/core] perf tools: Fix libdw-dev package name in error message
  2010-04-27 15:00     ` Arnaldo Carvalho de Melo
@ 2010-04-27 21:57       ` Masami Hiramatsu
  0 siblings, 0 replies; 7+ messages in thread
From: Masami Hiramatsu @ 2010-04-27 21:57 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: Valdis.Kletnieks, mingo, hpa, paulus, linux-kernel, tzanussi,
	a.p.zijlstra, fweisbec, stefanha, tglx, mingo, linux-tip-commits

Arnaldo Carvalho de Melo wrote:
> Em Tue, Apr 27, 2010 at 09:48:20AM -0400, Valdis.Kletnieks@vt.edu escreveu:
>> On Tue, 27 Apr 2010 12:59:19 -0000, tip-bot for Stefan Hajnoczi said:
>>> Commit-ID:  f93830fbb06b67848c762f2177c06cc3cbb97deb
>>> Gitweb:     http://git.kernel.org/tip/f93830fbb06b67848c762f2177c06cc3cbb97deb
>>> Author:     Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
>>> AuthorDate: Mon, 26 Apr 2010 15:39:54 -0300
>>> Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
>>> CommitDate: Mon, 26 Apr 2010 15:39:54 -0300
>>>
>>> perf tools: Fix libdw-dev package name in error message
>>>
>>> The headers required for DWARF support are provided by the libdw-dev
>>> package in Debian-based distros.
>>
>> Not all the world is Debian based.  As I mentioned before, the package needed
>> is elfutils-devel on Redhat/Fedora systesm.  For those boxes, you're changing a
>> 'elfutil-dev' that the user can guess is supposed to be -devel, to a package
>> that doesn't exist on Redhat/Fedora.  And to compound it, if the user guesses
>> that you meant libdwarf-devel, that still fails, because that does *not*
>> provide the libdw.h header - that's still in elfutil-devel.
> 
> It works for Red Hat, the message is:
> 
>         msg := $(warning No libdw.h found or old libdw.h found, disables dwarf support. Please install elfutils-devel/libdw-dev);

Right, if someone knows some other package name on other distro,
please tell us.

Thank you,

-- 
Masami Hiramatsu
e-mail: mhiramat@redhat.com

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-04-27 21:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-26 14:27 [PATCH] perf: Fix libdw-dev package name in error message Stefan Hajnoczi
2010-04-26 16:13 ` Arnaldo Carvalho de Melo
2010-04-26 16:32 ` Valdis.Kletnieks
2010-04-27 12:59 ` [tip:perf/core] perf tools: " tip-bot for Stefan Hajnoczi
2010-04-27 13:48   ` Valdis.Kletnieks
2010-04-27 15:00     ` Arnaldo Carvalho de Melo
2010-04-27 21:57       ` Masami Hiramatsu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox