Marco Elver | dfd402a | 2019-11-14 19:02:54 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | ifdef CONFIG_KCSAN |
| 3 | |
Marco Elver | 17168f5 | 2020-05-21 16:20:38 +0200 | [diff] [blame] | 4 | # GCC and Clang accept backend options differently. Do not wrap in cc-option, |
| 5 | # because Clang accepts "--param" even if it is unused. |
| 6 | ifdef CONFIG_CC_IS_CLANG |
| 7 | cc-param = -mllvm -$(1) |
| 8 | else |
| 9 | cc-param = --param -$(1) |
| 10 | endif |
| 11 | |
Marco Elver | 75d75b7 | 2020-05-21 16:20:39 +0200 | [diff] [blame] | 12 | # Keep most options here optional, to allow enabling more compilers if absence |
| 13 | # of some options does not break KCSAN nor causes false positive reports. |
Marco Elver | 17168f5 | 2020-05-21 16:20:38 +0200 | [diff] [blame] | 14 | CFLAGS_KCSAN := -fsanitize=thread \ |
Marco Elver | 75d75b7 | 2020-05-21 16:20:39 +0200 | [diff] [blame] | 15 | $(call cc-option,$(call cc-param,tsan-instrument-func-entry-exit=0) -fno-optimize-sibling-calls) \ |
Marco Elver | d31d4d6 | 2020-05-21 16:20:40 +0200 | [diff] [blame] | 16 | $(call cc-option,$(call cc-param,tsan-instrument-read-before-write=1)) \ |
Marco Elver | 75d75b7 | 2020-05-21 16:20:39 +0200 | [diff] [blame] | 17 | $(call cc-param,tsan-distinguish-volatile=1) |
Marco Elver | dfd402a | 2019-11-14 19:02:54 +0100 | [diff] [blame] | 18 | |
| 19 | endif # CONFIG_KCSAN |