]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - scripts/Makefile.kcsan
Merge tag 'reset-fixes-for-v5.15' of git://git.pengutronix.de/pza/linux into arm...
[mirror_ubuntu-jammy-kernel.git] / scripts / Makefile.kcsan
CommitLineData
dfd402a4 1# SPDX-License-Identifier: GPL-2.0
17168f5c
ME
2# GCC and Clang accept backend options differently. Do not wrap in cc-option,
3# because Clang accepts "--param" even if it is unused.
4ifdef CONFIG_CC_IS_CLANG
5cc-param = -mllvm -$(1)
6else
e68dcd8e 7cc-param = --param $(1)
17168f5c
ME
8endif
9
75d75b7a
ME
10# Keep most options here optional, to allow enabling more compilers if absence
11# of some options does not break KCSAN nor causes false positive reports.
bb273211 12export CFLAGS_KCSAN := -fsanitize=thread \
75d75b7a 13 $(call cc-option,$(call cc-param,tsan-instrument-func-entry-exit=0) -fno-optimize-sibling-calls) \
14e2ac8d 14 $(call cc-option,$(call cc-param,tsan-compound-read-before-write=1),$(call cc-option,$(call cc-param,tsan-instrument-read-before-write=1))) \
75d75b7a 15 $(call cc-param,tsan-distinguish-volatile=1)