diff options
Diffstat (limited to 'scripts/Makefile.lib')
-rw-r--r-- | scripts/Makefile.lib | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 2b706617c89a..7a7778746ea6 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib | |||
@@ -116,6 +116,17 @@ _a_flags = $(KBUILD_CPPFLAGS) $(KBUILD_AFLAGS) $(KBUILD_SUBDIR_ASFLAGS) \ | |||
116 | $(asflags-y) $(AFLAGS_$(basetarget).o) | 116 | $(asflags-y) $(AFLAGS_$(basetarget).o) |
117 | _cpp_flags = $(KBUILD_CPPFLAGS) $(cppflags-y) $(CPPFLAGS_$(@F)) | 117 | _cpp_flags = $(KBUILD_CPPFLAGS) $(cppflags-y) $(CPPFLAGS_$(@F)) |
118 | 118 | ||
119 | # | ||
120 | # Enable gcov profiling flags for a file, directory or for all files depending | ||
121 | # on variables GCOV_PROFILE_obj.o, GCOV_PROFILE and CONFIG_GCOV_PROFILE_ALL | ||
122 | # (in this order) | ||
123 | # | ||
124 | ifeq ($(CONFIG_GCOV_KERNEL),y) | ||
125 | _c_flags += $(if $(patsubst n%,, \ | ||
126 | $(GCOV_PROFILE_$(basetarget).o)$(GCOV_PROFILE)$(CONFIG_GCOV_PROFILE_ALL)), \ | ||
127 | $(CFLAGS_GCOV)) | ||
128 | endif | ||
129 | |||
119 | # If building the kernel in a separate objtree expand all occurrences | 130 | # If building the kernel in a separate objtree expand all occurrences |
120 | # of -Idir to -I$(srctree)/dir except for absolute paths (starting with '/'). | 131 | # of -Idir to -I$(srctree)/dir except for absolute paths (starting with '/'). |
121 | 132 | ||