Merge tag '6.6-rc-smb3-client-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6
[sfrench/cifs-2.6.git] / arch / powerpc / xmon / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for xmon
3
4 GCOV_PROFILE := n
5 KCOV_INSTRUMENT := n
6 UBSAN_SANITIZE := n
7 KASAN_SANITIZE := n
8 KCSAN_SANITIZE := n
9
10 # Disable ftrace for the entire directory
11 ccflags-remove-$(CONFIG_FUNCTION_TRACER) += $(CC_FLAGS_FTRACE)
12
13 ccflags-$(CONFIG_PPC64) := $(NO_MINIMAL_TOC)
14
15 # Clang stores addresses on the stack causing the frame size to blow
16 # out. See https://github.com/ClangBuiltLinux/linux/issues/252
17 ccflags-$(CONFIG_CC_IS_CLANG) += -Wframe-larger-than=4096
18
19 obj-y                   += xmon.o nonstdio.o spr_access.o xmon_bpts.o
20
21 ifdef CONFIG_XMON_DISASSEMBLY
22 obj-y                   += ppc-dis.o ppc-opc.o
23 obj-$(CONFIG_SPU_BASE)  += spu-dis.o spu-opc.o
24 endif