wafsamba/samba_abi: always hide ABI symbols which must be local
authorAlexander Bokovoy <ab@samba.org>
Thu, 12 Jul 2018 07:19:41 +0000 (10:19 +0300)
committerAndrew Bartlett <abartlet@samba.org>
Fri, 13 Jul 2018 15:45:35 +0000 (17:45 +0200)
commit4e123c46820e737968fa3d1c594aa016cca39637
tree9e7980736cc53b1e44de1b93301eab5a24b5a44a
parentc9656fd2977557ab20ec4e3d87c385a9b2f1bf43
wafsamba/samba_abi: always hide ABI symbols which must be local

binutils 2.31 is going to change how shared libraries are linked, such
that they always provide their own local definitions of the _end, _edata
and _bss_start symbols.  This would all be fine, except for shared
libraries that export all symbols be default.  (Rather than just
exporting those symbols that form part of their API).

According to binutils developers, we should only export the symbols we
explicitly want to be used. We don't use this principle for all our
libraries and deliberately don't want to have ABI versioning control for
all of them, so the change I introduce here is to explicitly mark those
symbols that will always be added by default linker configuration with
binutils 2.31 as local. Right now these are '_end', '_edata', and
'__bss_start' symbols.

Signed-off-by: Alexander Bokovoy <ab@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Fri Jul 13 17:45:36 CEST 2018 on sn-devel-144
buildtools/wafsamba/samba_abi.py
buildtools/wafsamba/tests/test_abi.py