mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
c330b50d8c
All supported compilers today (gcc v5.1+ and clang v11+) have support for -mcmodel=medium. As such, NO_MINIMAL_TOC is no longer being set. Remove NO_MINIMAL_TOC as well as the fallback to -mminimal-toc. Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Naveen N Rao <naveen@kernel.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20240110141237.3179199-1-naveen@kernel.org
20 lines
688 B
Makefile
20 lines
688 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the linux ppc-specific parts of the memory manager.
|
|
#
|
|
|
|
obj-y := fault.o mem.o pgtable.o maccess.o pageattr.o \
|
|
init_$(BITS).o pgtable_$(BITS).o \
|
|
pgtable-frag.o ioremap.o ioremap_$(BITS).o \
|
|
init-common.o mmu_context.o drmem.o \
|
|
cacheflush.o
|
|
obj-$(CONFIG_PPC_MMU_NOHASH) += nohash/
|
|
obj-$(CONFIG_PPC_BOOK3S_32) += book3s32/
|
|
obj-$(CONFIG_PPC_BOOK3S_64) += book3s64/
|
|
obj-$(CONFIG_NUMA) += numa.o
|
|
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o
|
|
obj-$(CONFIG_NOT_COHERENT_CACHE) += dma-noncoherent.o
|
|
obj-$(CONFIG_PPC_COPRO_BASE) += copro_fault.o
|
|
obj-$(CONFIG_PTDUMP_CORE) += ptdump/
|
|
obj-$(CONFIG_KASAN) += kasan/
|