Commit 6b1e22bd authored by Daniel Verkamp's avatar Daniel Verkamp
Browse files

config: rename CONFIG_ADDRESS_SANITIZER to CONFIG_ASAN



This is shorter and matches the more commonly-used name.

Change-Id: I6af862de90e5cf8a7c27161f1ee9bb5a1164bec6
Signed-off-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
parent 145e9014
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ CONFIG_WERROR?=n
CONFIG_COVERAGE?=n

# Build with Address Sanitizer enabled
CONFIG_ADDRESS_SANITIZER?=n
CONFIG_ASAN?=n

# Directory that contains the desired SPDK environment library.
# By default, this is implemented using DPDK.
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ endif

include $(CONFIG_ENV)/env.mk

ifeq ($(CONFIG_ADDRESS_SANITIZER),y)
ifeq ($(CONFIG_ASAN),y)
COMMON_CFLAGS += -fsanitize=address
LDFLAGS += -fsanitize=address
endif