summaryrefslogtreecommitdiff
path: root/buildtools/scripts/abi_gen.sh
AgeCommit message (Collapse)AuthorFilesLines
2012-09-07gen_abi.sh: filter out symbols not needed for ABIAlexander Bokovoy1-1/+1
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.
2011-01-11abi: force TERM=none in abi generationAndrew Tridgell1-1/+2
on Fedora12 gdb puts out a bit of binary garbage at the front of script output when TERM=xterm, presumably trying something like a clear screen. luckily it doesn't do it for unknown terminal types Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Tue Jan 11 06:48:56 CET 2011 on sn-devel-104
2010-11-21waf: fixed the build with a space in the source directoryAndrew Tridgell1-2/+2
2010-09-07waf-abi: fixed small uninitialised data on PPC64 Andrew Tridgell1-1/+1
on PPC64 Linux systems a 'S' line from nm means "small object uninitialised data"
2010-04-20build: include uninitialised data in the ABI symbolsAndrew Tridgell1-1/+1
This is needed for symbols like tdb_null in tdb, which are part of the public ABI Pair-Programmed-With: Rusty Russell <rusty@samba.org>
2010-04-18build: don't depend on the word size of nm outputAndrew Tridgell1-1/+1
the first column varies in length for different architectures
2010-04-18build: added a script for generating ABI signatures from shared librariesAndrew Tridgell1-0/+20