2 # Shown below is a simplified dependency graph of the OpenZFS provided
3 # libraries. Administrative commands (`zfs`, `zpool`, etc) interface with
4 # the kernel modules using the `libzfs.so` and `libzfs_core.so` libraries.
5 # These libraries provide a stable ABI across OpenZFS point releases.
7 # The `libzpool.so` library is a user space build of the DMU and SPA layers
8 # used to implement debugging tools (zdb) and code validation tools (ztest).
9 # These library interfaces are subject to change at any time.
12 # CMDS: zhack/ztest/ zfs/zpool/zed/
13 # raidz_{test,bench} zinject/zstream
15 # LIBS: | | libzfsbootenv*
18 # libzpool libzfs* ----------------+
20 # libicp --/ | | \ / | | \------- libshare
22 # libzstd ---/ | \ / | \--------- libuutil
24 # libunicode --/ \ / \ | |
26 # libzutil libzfs_core* | |
30 # libtpool -------------/ | | | \---- libnvpair* | | |
32 # libefi -----------------/ | \------ libavl* --------/ |
34 # \-------- libspl ----+------/
37 # NB: GNU Automake Manual, Chapter 8.3.5: Libtool Convenience Libraries
38 # These nine libraries are intermediary build components.
40 # * - A stable ABI is provided for these libraries;
41 # when performing an ABI check the following options are applied:
43 # --no-unreferenced-symbols: Exclude symbols which are not referenced by
44 # any debug information. Without this _init() and _fini() are incorrectly
45 # reported on CentOS7 for libuutil.so.
47 # --headers-dir1: Limit ABI checks to public OpenZFS headers, otherwise
48 # changes in public system headers are also reported.
50 # --suppressions: Honor a suppressions file for each library to provide
51 # a mechanism for suppressing harmless warnings.
57 include $(srcdir)/%D%/libavl/Makefile.am
58 include $(srcdir)/%D%/libicp/Makefile.am
59 include $(srcdir)/%D%/libnvpair/Makefile.am
60 include $(srcdir)/%D%/libshare/Makefile.am
61 include $(srcdir)/%D%/libspl/Makefile.am
62 include $(srcdir)/%D%/libtpool/Makefile.am
63 include $(srcdir)/%D%/libunicode/Makefile.am
64 include $(srcdir)/%D%/libuutil/Makefile.am
65 include $(srcdir)/%D%/libzdb/Makefile.am
66 include $(srcdir)/%D%/libzfs_core/Makefile.am
67 include $(srcdir)/%D%/libzfs/Makefile.am
68 include $(srcdir)/%D%/libzfsbootenv/Makefile.am
69 include $(srcdir)/%D%/libzpool/Makefile.am
70 include $(srcdir)/%D%/libzstd/Makefile.am
71 include $(srcdir)/%D%/libzutil/Makefile.am
73 include $(srcdir)/%D%/libefi/Makefile.am
78 lib: $(noinst_LTLIBRARIES) $(lib_LTLIBRARIES)
81 PHONY += checkabi storeabi check_libabi_version allow_libabi_only_for_x86_64
84 if [ $$(abidw -v | $(SED) 's/[^0-9]//g') -lt 200 ]; then \
86 "*** Please use libabigail 2.0.0 version or newer;" \
87 "*** otherwise results are not consistent!" \
88 "(or see https://github.com/openzfs/libabigail-docker)"; \
92 allow_libabi_only_for_x86_64:
93 echo '*** ABI definitions provided apply only to x86_64:'
94 echo '*** not checking or storing ABI and assuming success.'
97 # These should depend on $(lib_LTLIBRARIES), but this breaks on CI when bound into Docker
98 checkabi: check_libabi_version
100 for lib in $(lib_LTLIBRARIES); do \
102 [ -f $(srcdir)/lib/$$lib/$$lib.suppr ] || continue; \
104 abidiff --no-unreferenced-symbols \
105 --headers-dir1 include \
106 --suppressions $(srcdir)/lib/$$lib/$$lib.suppr \
107 $(srcdir)/lib/$$lib/$$lib.abi .libs/$$lib.so || err=$$((err + 1)); \
111 storeabi: check_libabi_version
112 for lib in $(lib_LTLIBRARIES); do \
114 [ -f $(srcdir)/lib/$$lib/$$lib.suppr ] || continue; \
115 abidw --no-show-locs \
118 --type-id-style hash \
119 .libs/$$lib.so > $(srcdir)/lib/$$lib/$$lib.abi; \
122 checkabi: allow_libabi_only_for_x86_64
123 storeabi: allow_libabi_only_for_x86_64