diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-05-12 15:20:51 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-23 14:56:53 -0400 |
commit | b53dde9d34f2df396540988ebc65c33400f57b04 (patch) | |
tree | 1592aebcfd56b4a7abd37bf44f27a01a0c039340 /kernel/trace/Makefile | |
parent | 3594136ad67a54d77bcb2547e70011754a2f91d5 (diff) |
ftrace: disable -pg for the tracer itself
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/trace/Makefile')
-rw-r--r-- | kernel/trace/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/kernel/trace/Makefile b/kernel/trace/Makefile index 3fec653d6533..c25a6cd6a529 100644 --- a/kernel/trace/Makefile +++ b/kernel/trace/Makefile | |||
@@ -1,3 +1,11 @@ | |||
1 | |||
2 | # Do not instrument the tracer itself: | ||
3 | |||
4 | ifdef CONFIG_FTRACE | ||
5 | ORIG_CFLAGS := $(KBUILD_CFLAGS) | ||
6 | KBUILD_CFLAGS = $(subst -pg,,$(ORIG_CFLAGS)) | ||
7 | endif | ||
8 | |||
1 | obj-$(CONFIG_FTRACE) += libftrace.o | 9 | obj-$(CONFIG_FTRACE) += libftrace.o |
2 | 10 | ||
3 | obj-$(CONFIG_TRACING) += trace.o | 11 | obj-$(CONFIG_TRACING) += trace.o |