diff options
-rw-r--r-- | arch/s390/Makefile | 5 | ||||
-rw-r--r-- | lib/Kconfig.debug | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/arch/s390/Makefile b/arch/s390/Makefile index b3791fb094a8..74ef57dcfa60 100644 --- a/arch/s390/Makefile +++ b/arch/s390/Makefile | |||
@@ -34,6 +34,11 @@ cflags-$(CONFIG_MARCH_G5) += $(call cc-option,-march=g5) | |||
34 | cflags-$(CONFIG_MARCH_Z900) += $(call cc-option,-march=z900) | 34 | cflags-$(CONFIG_MARCH_Z900) += $(call cc-option,-march=z900) |
35 | cflags-$(CONFIG_MARCH_Z990) += $(call cc-option,-march=z990) | 35 | cflags-$(CONFIG_MARCH_Z990) += $(call cc-option,-march=z990) |
36 | 36 | ||
37 | # | ||
38 | # Prevent tail-call optimizations, to get clearer backtraces: | ||
39 | # | ||
40 | cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls | ||
41 | |||
37 | # old style option for packed stacks | 42 | # old style option for packed stacks |
38 | ifeq ($(call cc-option-yn,-mkernel-backchain),y) | 43 | ifeq ($(call cc-option-yn,-mkernel-backchain),y) |
39 | cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK | 44 | cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK |
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 04e374c6fd46..91e338a3d069 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -208,7 +208,7 @@ config DEBUG_VM | |||
208 | 208 | ||
209 | config FRAME_POINTER | 209 | config FRAME_POINTER |
210 | bool "Compile the kernel with frame pointers" | 210 | bool "Compile the kernel with frame pointers" |
211 | depends on DEBUG_KERNEL && (X86 || CRIS || M68K || M68KNOMMU || FRV || UML) | 211 | depends on DEBUG_KERNEL && (X86 || CRIS || M68K || M68KNOMMU || FRV || UML || S390) |
212 | default y if DEBUG_INFO && UML | 212 | default y if DEBUG_INFO && UML |
213 | help | 213 | help |
214 | If you say Y here the resulting kernel image will be slightly larger | 214 | If you say Y here the resulting kernel image will be slightly larger |