]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - scripts/Makefile.ubsan
Merge tag 'for-6.9-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave...
[thirdparty/kernel/linux.git] / scripts / Makefile.ubsan
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
bb273211 2
cdf8a76f
KC
3# Enable available and selected UBSAN features.
4ubsan-cflags-$(CONFIG_UBSAN_ALIGNMENT) += -fsanitize=alignment
2d47c695 5ubsan-cflags-$(CONFIG_UBSAN_BOUNDS_STRICT) += -fsanitize=bounds-strict
cdf8a76f
KC
6ubsan-cflags-$(CONFIG_UBSAN_ARRAY_BOUNDS) += -fsanitize=array-bounds
7ubsan-cflags-$(CONFIG_UBSAN_LOCAL_BOUNDS) += -fsanitize=local-bounds
8ubsan-cflags-$(CONFIG_UBSAN_SHIFT) += -fsanitize=shift
9ubsan-cflags-$(CONFIG_UBSAN_DIV_ZERO) += -fsanitize=integer-divide-by-zero
10ubsan-cflags-$(CONFIG_UBSAN_UNREACHABLE) += -fsanitize=unreachable
cdf8a76f
KC
11ubsan-cflags-$(CONFIG_UBSAN_BOOL) += -fsanitize=bool
12ubsan-cflags-$(CONFIG_UBSAN_ENUM) += -fsanitize=enum
167ebeda 13ubsan-cflags-$(CONFIG_UBSAN_TRAP) += $(call cc-option,-fsanitize-trap=undefined,-fsanitize-undefined-trap-on-error)
bb273211 14
cdf8a76f 15export CFLAGS_UBSAN := $(ubsan-cflags-y)
557f8c58
KC
16
17ubsan-signed-wrap-cflags-$(CONFIG_UBSAN_SIGNED_WRAP) += -fsanitize=signed-integer-overflow
18export CFLAGS_UBSAN_SIGNED_WRAP := $(ubsan-signed-wrap-cflags-y)