NameDateSize

..17-May-201976

Makefile.sysfakeH A D17-May-2019323

makesyscalls-fake.shH A D17-May-20192.9 KiB

READMEH A D17-May-2019807

shlib-compat-dirs.shH A D17-May-20191 KiB

shlib-compat.pyH A D17-May-201936 KiB

test/H17-May-201921

README

1ABI compatibility checker for shared libraries with symbol versioning.
2
3shlib-compat uses dwarf debugging symbols to recreate definitions of
4exported symbols, including function arguments and structural types.
5
6The shlib-compat.py script requires devel/dwarfdump port to be
7installed.
8
9
10Syscalls in libc are implemented as assembly stubs and thus have no
11debugging symbols attached. To enable sysfake stubs rebuild libc
12adding the following to /etc/make.conf:
13
14.if ${.CURDIR:M/usr/src/lib/libc}
15.include "../../tools/tools/shlib-compat/Makefile.sysfake"
16.endif
17
18To compare libc.so versions compiled with sysfake stubs:
19./shlib-compat.py -v --alias-prefix __sysfake_ \
20	--alias-prefix __sysfake_freebsd8_ \
21	--exclude-ver FBSDprivate \
22	--out-orig out-orig.c --out-new out-new.c libc.so.7.orig libc.so.7.new
23