From f561a6e2a4b05c8c8439f3c125f3b16b6b6bc188 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 2 Oct 2010 00:04:52 +0000 Subject: [PATCH] Link with -rdynamic to make backtrace_symbols work again. git-svn-id: svn://localhost/ardour2/branches/3.0@7865 d708f5d6-7413-0410-9779-e7cbd77b26cf --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 7a3a41a3b7..599b7659f6 100644 --- a/wscript +++ b/wscript @@ -108,7 +108,7 @@ def set_compiler_flags (conf,opt): if opt.gprofile: debug_flags = [ '-pg' ] else: - debug_flags = [ ] # waf adds -O0 -g itself. thanks waf! + debug_flags = [ '-rdynamic' ] # waf adds -O0 -g itself. thanks waf! # guess at the platform, used to define compiler flags