mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-27 06:50:37 +00:00

Now that the IBM Cell Blade support is removed, the xmon SPU support is effectively unusable. That is because PS3 doesn't implement udbg_getc which is required to send input to xmon. So remove the xmon SPU support. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com> Link: https://patch.msgid.link/20241218105523.416573-6-mpe@ellerman.id.au
20 lines
562 B
Makefile
20 lines
562 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for xmon
|
|
|
|
GCOV_PROFILE := n
|
|
KCOV_INSTRUMENT := n
|
|
UBSAN_SANITIZE := n
|
|
KASAN_SANITIZE := n
|
|
KCSAN_SANITIZE := n
|
|
|
|
# Disable ftrace for the entire directory
|
|
ccflags-remove-$(CONFIG_FUNCTION_TRACER) += $(CC_FLAGS_FTRACE)
|
|
|
|
# Clang stores addresses on the stack causing the frame size to blow
|
|
# out. See https://github.com/ClangBuiltLinux/linux/issues/252
|
|
ccflags-$(CONFIG_CC_IS_CLANG) += -Wframe-larger-than=4096
|
|
|
|
obj-y += xmon.o nonstdio.o spr_access.o xmon_bpts.o
|
|
|
|
obj-$(CONFIG_XMON_DISASSEMBLY) += ppc-dis.o ppc-opc.o
|