Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'trace-v4.19-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace

Pull tracing fix from Steven Rostedt:
"This fixes an issue with the build system caused by a change that
modifies CC_FLAGS_FTRACE. The issue is that it breaks the dependencies
and causes "make targz-pkg" to rebuild the entire world"

* tag 'trace-v4.19-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
tracing/Makefile: Fix handling redefinition of CC_FLAGS_FTRACE

+5 -3
+5 -3
Makefile
··· 616 616 $(call cc-disable-warning,maybe-uninitialized,) 617 617 export CFLAGS_GCOV 618 618 619 + # The arch Makefiles can override CC_FLAGS_FTRACE. We may also append it later. 620 + ifdef CONFIG_FUNCTION_TRACER 621 + CC_FLAGS_FTRACE := -pg 622 + endif 623 + 619 624 # The arch Makefile can set ARCH_{CPP,A,C}FLAGS to override the default 620 625 # values of the respective KBUILD_* variables 621 626 ARCH_CPPFLAGS := ··· 760 755 endif 761 756 762 757 ifdef CONFIG_FUNCTION_TRACER 763 - ifndef CC_FLAGS_FTRACE 764 - CC_FLAGS_FTRACE := -pg 765 - endif 766 758 ifdef CONFIG_FTRACE_MCOUNT_RECORD 767 759 # gcc 5 supports generating the mcount tables directly 768 760 ifeq ($(call cc-option-yn,-mrecord-mcount),y)