diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.ubsan | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/Makefile.ubsan b/scripts/Makefile.ubsan index 8ab68679cfb5..dd779c40c8e6 100644 --- a/scripts/Makefile.ubsan +++ b/scripts/Makefile.ubsan | |||
@@ -3,7 +3,6 @@ ifdef CONFIG_UBSAN | |||
3 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=integer-divide-by-zero) | 3 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=integer-divide-by-zero) |
4 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=unreachable) | 4 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=unreachable) |
5 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=vla-bound) | 5 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=vla-bound) |
6 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=null) | ||
7 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=signed-integer-overflow) | 6 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=signed-integer-overflow) |
8 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=bounds) | 7 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=bounds) |
9 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=object-size) | 8 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=object-size) |
@@ -14,4 +13,8 @@ ifdef CONFIG_UBSAN | |||
14 | ifdef CONFIG_UBSAN_ALIGNMENT | 13 | ifdef CONFIG_UBSAN_ALIGNMENT |
15 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=alignment) | 14 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=alignment) |
16 | endif | 15 | endif |
16 | |||
17 | ifdef CONFIG_UBSAN_NULL | ||
18 | CFLAGS_UBSAN += $(call cc-option, -fsanitize=null) | ||
19 | endif | ||
17 | endif | 20 | endif |