config: rename CONFIG_ADDRESS_SANITIZER to CONFIG_ASAN

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

Change-Id: I6af862de90e5cf8a7c27161f1ee9bb5a1164bec6
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2016-11-30 11:17:15 -07:00
parent 145e9014b9
commit 6b1e22bd86
2 changed files with 2 additions and 2 deletions

2
CONFIG
View File

@ -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.

View File

@ -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