Makefile (97acb6a8fcc4e5c2cdc2693a35acdc5a7461aaa3) Makefile (93324e6842148cfdb44d1437fb586b957ace1f8c)
1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the linux kernel.
4#
5
6extra-y := head_$(BITS).o
7extra-y += head$(BITS).o
8extra-y += ebda.o

--- 19 unchanged lines hidden (view full) ---

28KASAN_SANITIZE_dumpstack_$(BITS).o := n
29KASAN_SANITIZE_stacktrace.o := n
30KASAN_SANITIZE_paravirt.o := n
31KASAN_SANITIZE_sev.o := n
32
33# With some compiler versions the generated code results in boot hangs, caused
34# by several compilation units. To be safe, disable all instrumentation.
35KCSAN_SANITIZE := n
1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the linux kernel.
4#
5
6extra-y := head_$(BITS).o
7extra-y += head$(BITS).o
8extra-y += ebda.o

--- 19 unchanged lines hidden (view full) ---

28KASAN_SANITIZE_dumpstack_$(BITS).o := n
29KASAN_SANITIZE_stacktrace.o := n
30KASAN_SANITIZE_paravirt.o := n
31KASAN_SANITIZE_sev.o := n
32
33# With some compiler versions the generated code results in boot hangs, caused
34# by several compilation units. To be safe, disable all instrumentation.
35KCSAN_SANITIZE := n
36KMSAN_SANITIZE_head$(BITS).o := n
37KMSAN_SANITIZE_nmi.o := n
36
37# If instrumentation of this dir is enabled, boot hangs during first second.
38# Probably could be more selective here, but note that files related to irqs,
39# boot, dumpstack/stacktrace, etc are either non-interesting or can lead to
40# non-deterministic coverage.
41KCOV_INSTRUMENT := n
42
43CFLAGS_irq.o := -I $(srctree)/$(src)/../include/asm/trace

--- 108 unchanged lines hidden ---
38
39# If instrumentation of this dir is enabled, boot hangs during first second.
40# Probably could be more selective here, but note that files related to irqs,
41# boot, dumpstack/stacktrace, etc are either non-interesting or can lead to
42# non-deterministic coverage.
43KCOV_INSTRUMENT := n
44
45CFLAGS_irq.o := -I $(srctree)/$(src)/../include/asm/trace

--- 108 unchanged lines hidden ---