From 34d928a83011005bf44df26b4b32c3777b2e6595 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Tue, 7 Nov 2017 23:54:19 +0200 Subject: Better check for when address sanitizer is enabled. Closes #2590. --- mesonbuild/compilers/compilers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/compilers/compilers.py') diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index bacf478..5a3c8d1 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -273,7 +273,7 @@ def sanitizer_compile_args(value): if value == 'none': return [] args = ['-fsanitize=' + value] - if value == 'address': + if 'address' in value: # For -fsanitize=address,undefined args.append('-fno-omit-frame-pointer') return args -- cgit v1.1