From: Karsten Ballüder Date: Mon, 20 Jul 1998 11:25:50 +0000 (+0000) Subject: added -O0 to debug flags to disable optimisation - might break things for non-gcc X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3d6a5e3c5bf72d5cf01f4a43e4f915f05c773a08 added -O0 to debug flags to disable optimisation - might break things for non-gcc git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@313 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/install/gtk/configure b/install/gtk/configure index f243d9f196..3795ffbcfb 100755 --- a/install/gtk/configure +++ b/install/gtk/configure @@ -5692,7 +5692,7 @@ fi WXDEBUG= if test "$USE_DEBUG_INFO" = 1 ; then - WXDEBUG="-g" + WXDEBUG="-g -O0" fi diff --git a/install/gtk/configure.in b/install/gtk/configure.in index 353601aeb5..507f0cdb6c 100644 --- a/install/gtk/configure.in +++ b/install/gtk/configure.in @@ -951,7 +951,7 @@ fi WXDEBUG= if test "$USE_DEBUG_INFO" = 1 ; then - WXDEBUG="-g" + WXDEBUG="-g -O0" fi AC_SUBST(WXDEBUG)