Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / arch / powerpc / xmon / Makefile
blobd778011060a8de2327b0d2ba3b3d9fba75627a42
1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for xmon
4 GCOV_PROFILE := n
5 KCOV_INSTRUMENT := n
6 UBSAN_SANITIZE := n
7 KASAN_SANITIZE := n
8 KCSAN_SANITIZE := n
10 # Disable ftrace for the entire directory
11 ccflags-remove-$(CONFIG_FUNCTION_TRACER) += $(CC_FLAGS_FTRACE)
13 # Clang stores addresses on the stack causing the frame size to blow
14 # out. See https://github.com/ClangBuiltLinux/linux/issues/252
15 ccflags-$(CONFIG_CC_IS_CLANG) += -Wframe-larger-than=4096
17 obj-y += xmon.o nonstdio.o spr_access.o xmon_bpts.o
19 ifdef CONFIG_XMON_DISASSEMBLY
20 obj-y += ppc-dis.o ppc-opc.o
21 obj-$(CONFIG_SPU_BASE) += spu-dis.o spu-opc.o
22 endif