mirror of
https://github.com/torvalds/linux.git
synced 2024-12-01 08:31:37 +00:00
230c77a5e9
When gcc with -pg, it'll add _mcount stub in every function. We need implement the _mcount in kernel and ftrace depends on stackstrace. To do: call-graph, dynamic ftrace Signed-off-by: Guo Ren <ren_guo@c-sky.com>
12 lines
273 B
Makefile
12 lines
273 B
Makefile
obj-y += cacheflush.o
|
|
obj-$(CONFIG_CPU_HAS_FPU) += fpu.o
|
|
obj-y += memcmp.o
|
|
obj-y += memcpy.o
|
|
obj-y += memmove.o
|
|
obj-y += memset.o
|
|
obj-y += strcmp.o
|
|
obj-y += strcpy.o
|
|
obj-y += strlen.o
|
|
obj-y += strksyms.o
|
|
obj-$(CONFIG_FUNCTION_TRACER) += mcount.o
|