mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-08 15:40:35 +00:00
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
18 lines
567 B
Makefile
18 lines
567 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-y += mmu_context.o tlb.o tlb_low.o kup.o
|
|
obj-$(CONFIG_PPC_BOOK3E_64) += tlb_low_64e.o book3e_pgtable.o
|
|
obj-$(CONFIG_40x) += 40x.o
|
|
obj-$(CONFIG_44x) += 44x.o
|
|
obj-$(CONFIG_PPC_8xx) += 8xx.o
|
|
obj-$(CONFIG_PPC_E500) += e500.o
|
|
obj-$(CONFIG_RANDOMIZE_BASE) += kaslr_booke.o
|
|
ifdef CONFIG_HUGETLB_PAGE
|
|
obj-$(CONFIG_PPC_E500) += e500_hugetlbpage.o
|
|
endif
|
|
|
|
# Disable kcov instrumentation on sensitive code
|
|
# This is necessary for booting with kcov enabled on book3e machines
|
|
KCOV_INSTRUMENT_tlb.o := n
|
|
KCOV_INSTRUMENT_e500.o := n
|