diff options
author | Karol Swietlicki <magotari@gmail.com> | 2008-02-05 09:30:42 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 20:44:25 +0300 |
commit | 054211acad0cb911177507a039d8e7a25bff084d (patch) | |
tree | 220f862dd5aba77fedcf7278ebcf773e897a63a1 /arch/um/Kconfig.debug | |
parent | 02bff1f091db446b07a9275cbcd048264dcf2260 (diff) | |
download | linux-054211acad0cb911177507a039d8e7a25bff084d.tar.xz |
uml: GPROF needs to depend on FRAME_POINTER
This is a short Kconfig fix for a problem in User Mode Linux. Frame pointers
are required for gprof support to work.
Signed-off-by: Karol Swietlicki <magotari@gmail.com>
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/Kconfig.debug')
-rw-r--r-- | arch/um/Kconfig.debug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/Kconfig.debug b/arch/um/Kconfig.debug index 40456f435419..8fce5e536b0f 100644 --- a/arch/um/Kconfig.debug +++ b/arch/um/Kconfig.debug @@ -4,7 +4,7 @@ source "lib/Kconfig.debug" config GPROF bool "Enable gprof support" - depends on DEBUG_INFO + depends on DEBUG_INFO && FRAME_POINTER help This allows profiling of a User-Mode Linux kernel with the gprof utility. |