From 62961002b77b5b53e994da0789d3a0602be211e6 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sun, 14 Dec 2014 15:00:09 -0500 Subject: [PATCH] Add /Zo flag to msvc debug builds. http://msdn.microsoft.com/en-us/library/dn785163.aspx --- AMBuildScript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AMBuildScript b/AMBuildScript index 8b39cf5..2b7226c 100644 --- a/AMBuildScript +++ b/AMBuildScript @@ -190,7 +190,7 @@ class MMSConfig(object): if cxx.behavior == 'gcc': cfg.cflags += ['-g3'] elif cxx.behavior == 'msvc': - cfg.cflags += ['/Od', '/RTC1'] + cfg.cflags += ['/Od', '/Zo', '/RTC1'] # This needs to be after our optimization flags which could otherwise disable it. if cxx.name == 'msvc':