From 50b122e5743a738ddf636fdccaa4b6712508ea7d Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Fri, 24 Aug 2012 11:20:55 -0700 Subject: windows: pass /Zi to gtest compile as well --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index e4b9eb4..bd50e67 100755 --- a/configure.py +++ b/configure.py @@ -320,7 +320,7 @@ if options.with_gtest: gtest_all_incs = '-I%s -I%s' % (path, os.path.join(path, 'include')) if platform == 'windows': - gtest_cflags = '/nologo /EHsc ' + gtest_all_incs + gtest_cflags = '/nologo /EHsc /Zi ' + gtest_all_incs else: gtest_cflags = '-fvisibility=hidden ' + gtest_all_incs objs += n.build(built('gtest-all' + objext), 'cxx', -- cgit v0.12