diff options
author | 2021-07-28 13:59:04 +0200 | |
---|---|---|
committer | 2021-07-30 17:09:23 +0200 | |
commit | e37b3dd063a1a68e28a7cfaf77c84c472112e330 (patch) | |
tree | c9f816a28c28f228533812d8372a9541d2123b40 /arch/s390/purgatory/Makefile | |
parent | kcsan: use u64 instead of cycles_t (diff) | |
download | wireguard-linux-e37b3dd063a1a68e28a7cfaf77c84c472112e330.tar.xz wireguard-linux-e37b3dd063a1a68e28a7cfaf77c84c472112e330.zip |
s390: enable KCSAN
s390x GCC and SystemZ Clang have ThreadSanitizer support now [1] [2],
so enable KCSAN for s390.
[1] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=ea22954e7c58
[2] https://reviews.llvm.org/D105629
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to '')
-rw-r--r-- | arch/s390/purgatory/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/purgatory/Makefile b/arch/s390/purgatory/Makefile index 21c4ebe29b9a..360ada80d20c 100644 --- a/arch/s390/purgatory/Makefile +++ b/arch/s390/purgatory/Makefile @@ -19,6 +19,7 @@ KCOV_INSTRUMENT := n GCOV_PROFILE := n UBSAN_SANITIZE := n KASAN_SANITIZE := n +KCSAN_SANITIZE := n KBUILD_CFLAGS := -fno-strict-aliasing -Wall -Wstrict-prototypes KBUILD_CFLAGS += -Wno-pointer-sign -Wno-sign-compare |