diff options
author | Andi Kleen <ak@suse.de> | 2005-09-12 12:49:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-12 13:50:58 -0400 |
commit | aeb39986ec8bf31c8d55eba22f0a9996363482fb (patch) | |
tree | bd6e1df6e2a8d6228a9c6f11df77be133dad5c3b /lib | |
parent | 9cdd304b20b921507fa1670aaf751496627c8d9c (diff) |
[PATCH] x86-64: Allow frame pointer and fix help text.
Allow frame pointer and fix help text.
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig.debug | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 3754c9a8f5c8..016e89a44ac8 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -170,11 +170,11 @@ config DEBUG_FS | |||
170 | 170 | ||
171 | config FRAME_POINTER | 171 | config FRAME_POINTER |
172 | bool "Compile the kernel with frame pointers" | 172 | bool "Compile the kernel with frame pointers" |
173 | depends on DEBUG_KERNEL && ((X86 && !X86_64) || CRIS || M68K || M68KNOMMU || FRV || UML) | 173 | depends on DEBUG_KERNEL && (X86 || CRIS || M68K || M68KNOMMU || FRV || UML) |
174 | default y if DEBUG_INFO && UML | 174 | default y if DEBUG_INFO && UML |
175 | help | 175 | help |
176 | If you say Y here the resulting kernel image will be slightly larger | 176 | If you say Y here the resulting kernel image will be slightly larger |
177 | and slower, but it will give very useful debugging information. | 177 | and slower, but it might give very useful debugging information |
178 | If you don't debug the kernel, you can say N, but we may not be able | 178 | on some architectures or you use external debuggers. |
179 | to solve problems without frame pointers. | 179 | If you don't debug the kernel, you can say N. |
180 | 180 | ||