From 39fe92ebc42831f47367f946c8c8dd1df31a0621 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Thu, 28 Jul 2011 12:58:31 +0000 Subject: [PATCH] Adding -rdynamic to debug build flags --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 72d48bab1..94dd28521 100644 --- a/SConstruct +++ b/SConstruct @@ -76,7 +76,7 @@ else: #Mac OS X else: env.Append(CPPPATH = ['/usr/include', '/usr/include/include', '/usr/include/libxml2/']) if GetOption('buildconfiguration') == 'debug': - env.Append(CCFLAGS = ' -Wall -g3') + env.Append(CCFLAGS = ' -Wall -g3 -rdynamic') else: env.Append(CCFLAGS = ' -O3 -DNDEBUG -march=native') #print "Compiling with: ", env['CXX']