From c63dcc97b695ceab2bbd8f421f56b623b0d867a2 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Thu, 23 Aug 2012 18:45:54 +0300 Subject: gen_abi.sh: filter out symbols not needed for ABI gdb does not allow to print definitions of certain section names and special symbols used for dynamic loading machinery: __bss_start _edata _init _fini _end Please note the space before the pattern, it is needed to avoid hungry matches of valid symbols with these as substrings (foo_init, for example). Without this patch gdb on Fedora 18 breaks when attempting to print function and struct signature. --- buildtools/scripts/abi_gen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildtools') diff --git a/buildtools/scripts/abi_gen.sh b/buildtools/scripts/abi_gen.sh index ed6f445519..787718cb20 100755 --- a/buildtools/scripts/abi_gen.sh +++ b/buildtools/scripts/abi_gen.sh @@ -10,7 +10,7 @@ cat <