From 27dddfc1187124f1d9b25a65b8df32e3ad3769c6 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Wed, 5 Aug 2015 22:48:26 +0000 Subject: [PATCH] Add flag to request codeview debug info on Windows Needed after fixing PR22032. llvm-svn: 244162 --- compiler-rt/test/lit.common.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler-rt/test/lit.common.cfg b/compiler-rt/test/lit.common.cfg index c1db4e1..a204348 100644 --- a/compiler-rt/test/lit.common.cfg +++ b/compiler-rt/test/lit.common.cfg @@ -30,6 +30,8 @@ if compiler_id == "Clang": # We assume that sanitizers should provide good enough error # reports and stack traces even with minimal debug info. config.debug_info_flags = ["-gline-tables-only"] + if platform.system() == 'Windows': + config.debug_info_flags.append("-gcodeview") elif compiler_id == 'GNU': config.cxx_mode_flags = ["-x c++"] config.debug_info_flags = ["-g"] -- 2.7.4