NameDateSize

..02-May-201885

Makefile.sysfakeH A D18-Aug-2016234

makesyscalls-fake.shH A D18-Aug-20162.8 KiB

READMEH A D18-Aug-2016807

shlib-compat-dirs.shH A D18-Aug-2016967

shlib-compat.pyH A D18-Aug-201638.1 KiB

test/H20-Dec-201621

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