From 54e7bb41c658c2ec1d9b5e7108f3329274ed59ce Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Wed, 7 Mar 2012 15:34:59 -0800 Subject: [PATCH] add no-omit-frame-pointer to debug flags to ensure without question it is not enabled --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 28d3cb94f..b860bb58e 100644 --- a/SConstruct +++ b/SConstruct @@ -1411,7 +1411,7 @@ if not preconfigured: pthread = '-pthread' # Common debugging flags. - debug_flags = '-g -DDEBUG -DMAPNIK_DEBUG' + debug_flags = '-g -fno-omit-frame-pointer -DDEBUG -DMAPNIK_DEBUG' ndebug_flags = '-DNDEBUG'