mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-19 02:41:00 +03:00
4f9014b70b
Provide two make targets: checkabi and storeabi. storeabi uses libabigail to generate a reference copy of the ABI for the public libraries. checkabi compares such a reference to the compiled version, failing if they are not compatible. No ABI is generated for libzpool.so, it is only used by ztest and zdb and not external consumers. Co-authored-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Antonio Russo <aerusso@aerusso.net> Closes #11144
34 lines
566 B
Makefile
34 lines
566 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
PHONY =
|
|
|
|
lib_LTLIBRARIES = libuutil.la
|
|
|
|
include $(top_srcdir)/config/Abigail.am
|
|
|
|
USER_C = \
|
|
uu_alloc.c \
|
|
uu_avl.c \
|
|
uu_dprintf.c \
|
|
uu_ident.c \
|
|
uu_list.c \
|
|
uu_misc.c \
|
|
uu_open.c \
|
|
uu_pname.c \
|
|
uu_string.c
|
|
|
|
libuutil_la_SOURCES = $(USER_C)
|
|
|
|
libuutil_la_LIBADD = \
|
|
$(abs_top_builddir)/lib/libavl/libavl.la \
|
|
$(abs_top_builddir)/lib/libspl/libspl.la
|
|
|
|
libuutil_la_LIBADD += $(LTLIBINTL)
|
|
|
|
libuutil_la_LDFLAGS = -pthread
|
|
|
|
if !ASAN_ENABLED
|
|
libuutil_la_LDFLAGS += -Wl,-z,defs
|
|
endif
|
|
|
|
libuutil_la_LDFLAGS += -version-info 3:0:0
|