From 0b76aa2de18caa4ac7cb43914847590e85551413 Mon Sep 17 00:00:00 2001 From: Till Straumann Date: Mon, 8 Sep 2014 22:31:47 -0700 Subject: [PATCH] - turn off frame-pointer optimization (otherwise stack trace capture does not work). --- configure/os/CONFIG.win32-x86.win32-x86 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure/os/CONFIG.win32-x86.win32-x86 b/configure/os/CONFIG.win32-x86.win32-x86 index 02b5c0143..4424ac5a6 100644 --- a/configure/os/CONFIG.win32-x86.win32-x86 +++ b/configure/os/CONFIG.win32-x86.win32-x86 @@ -43,7 +43,7 @@ WARN_CFLAGS_NO = -W1 # -MD use MSVCRT (run-time as DLL, multi-thread support) # -GL whole program optimization # -Zi generate program database for debugging information -OPT_CFLAGS_YES = -Ox -GL +OPT_CFLAGS_YES = -Ox -GL -Oy- # # -Zi generate program database for debugging information @@ -107,7 +107,7 @@ WARN_CXXFLAGS_NO = -W1 # -Ox maximum optimizations # -GL whole program optimization # -Zi generate program database for debugging information -OPT_CXXFLAGS_YES = -Ox -GL +OPT_CXXFLAGS_YES = -Ox -GL -Oy- # # -Zi generate program database for debugging information