From 0425c7c72615a69a0182dabd23b7caf16a709690 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Fri, 14 Nov 2014 22:18:03 +0000 Subject: [PATCH] add debug info when compiling sanitizer tests llvm-svn: 222051 --- libcxx/test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/test/lit.cfg b/libcxx/test/lit.cfg index d3c984a..9098b65 100644 --- a/libcxx/test/lit.cfg +++ b/libcxx/test/lit.cfg @@ -435,7 +435,7 @@ class Configuration(object): llvm_symbolizer = lit.util.which('llvm-symbolizer', symbolizer_search_paths) # Setup the sanitizer compile flags - self.compile_flags += ['-fno-omit-frame-pointer'] + self.compile_flags += ['-g', '-fno-omit-frame-pointer'] if sys.platform.startswith('linux'): self.link_flags += ['-ldl'] if san == 'Address': -- 2.7.4