12 lines
411 B
Makefile
12 lines
411 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
context-analysis-cflags := -DWARN_CONTEXT_ANALYSIS \
|
|
-fexperimental-late-parse-attributes -Wthread-safety \
|
|
-Wthread-safety-pointer -Wthread-safety-beta
|
|
|
|
ifndef CONFIG_WARN_CONTEXT_ANALYSIS_ALL
|
|
context-analysis-cflags += --warning-suppression-mappings=$(srctree)/scripts/context-analysis-suppression.txt
|
|
endif
|
|
|
|
export CFLAGS_CONTEXT_ANALYSIS := $(context-analysis-cflags)
|