diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -554,8 +554,15 @@ endif | |||
554 | ifdef CONFIG_FRAME_POINTER | 554 | ifdef CONFIG_FRAME_POINTER |
555 | KBUILD_CFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls | 555 | KBUILD_CFLAGS += -fno-omit-frame-pointer -fno-optimize-sibling-calls |
556 | else | 556 | else |
557 | # Some targets (ARM with Thumb2, for example), can't be built with frame | ||
558 | # pointers. For those, we don't have FUNCTION_TRACER automatically | ||
559 | # select FRAME_POINTER. However, FUNCTION_TRACER adds -pg, and this is | ||
560 | # incompatible with -fomit-frame-pointer with current GCC, so we don't use | ||
561 | # -fomit-frame-pointer with FUNCTION_TRACER. | ||
562 | ifndef CONFIG_FUNCTION_TRACER | ||
557 | KBUILD_CFLAGS += -fomit-frame-pointer | 563 | KBUILD_CFLAGS += -fomit-frame-pointer |
558 | endif | 564 | endif |
565 | endif | ||
559 | 566 | ||
560 | ifdef CONFIG_DEBUG_INFO | 567 | ifdef CONFIG_DEBUG_INFO |
561 | KBUILD_CFLAGS += -g | 568 | KBUILD_CFLAGS += -g |