xref: /linux-6.15/kernel/entry/Makefile (revision 142781e1)
1*142781e1SThomas Gleixner# SPDX-License-Identifier: GPL-2.0
2*142781e1SThomas Gleixner
3*142781e1SThomas Gleixner# Prevent the noinstr section from being pestered by sanitizer and other goodies
4*142781e1SThomas Gleixner# as long as these things cannot be disabled per function.
5*142781e1SThomas GleixnerKASAN_SANITIZE := n
6*142781e1SThomas GleixnerUBSAN_SANITIZE := n
7*142781e1SThomas GleixnerKCOV_INSTRUMENT := n
8*142781e1SThomas Gleixner
9*142781e1SThomas GleixnerCFLAGS_REMOVE_common.o	 = -fstack-protector -fstack-protector-strong
10*142781e1SThomas GleixnerCFLAGS_common.o		+= -fno-stack-protector
11*142781e1SThomas Gleixner
12*142781e1SThomas Gleixnerobj-$(CONFIG_GENERIC_ENTRY) += common.o
13