327c904615
No symbols affected in libavl No symbols affected by libtpool, but pre-ANSI declarations got purged No symbols affected by libzfs_core No symbols affected by libzfs_bootenv libefi got cleaned, gained efi_debug documentation in efi_partition.h, and removes one undocumented and unused symbol from libzfs_core: D default_vtoc_map libnvpair saw removal of these symbols: D nv_alloc_nosleep_def D nv_alloc_sleep D nv_alloc_sleep_def D nv_fixed_ops_def D nvlist_hashtable_init_size D nvpair_max_recursion libshare saw removal of these symbols from libzfs: T libshare_nfs_init T libshare_smb_init T register_fstype B smb_shares libzutil saw removal of these internal symbols from libzfs_core: T label_paths T slice_cache_compare T zpool_find_import_blkid T zpool_open_func T zutil_alloc T zutil_strdup Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Reviewed-by: John Kennedy <john.kennedy@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #12191
49 lines
945 B
Makefile
49 lines
945 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
VPATH = \
|
|
$(top_srcdir)/module/nvpair \
|
|
$(top_srcdir)/lib/libnvpair
|
|
|
|
# Includes kernel code, generate warnings for large stack frames
|
|
# and required CFLAGS for libtirpc
|
|
AM_CFLAGS += $(FRAME_LARGER_THAN) $(LIBTIRPC_CFLAGS)
|
|
AM_CFLAGS += -fvisibility=hidden
|
|
|
|
lib_LTLIBRARIES = libnvpair.la
|
|
|
|
include $(top_srcdir)/config/Abigail.am
|
|
|
|
USER_C = \
|
|
libnvpair.c \
|
|
libnvpair_json.c \
|
|
nvpair_alloc_system.c
|
|
|
|
KERNEL_C = \
|
|
nvpair_alloc_fixed.c \
|
|
nvpair.c \
|
|
fnvpair.c
|
|
|
|
dist_libnvpair_la_SOURCES = \
|
|
$(USER_C)
|
|
|
|
nodist_libnvpair_la_SOURCES = \
|
|
$(KERNEL_C)
|
|
|
|
libnvpair_la_LIBADD = \
|
|
$(abs_top_builddir)/lib/libspl/libspl_assert.la
|
|
|
|
libnvpair_la_LIBADD += $(LIBTIRPC_LIBS) $(LTLIBINTL)
|
|
|
|
libnvpair_la_LDFLAGS =
|
|
|
|
if !ASAN_ENABLED
|
|
libnvpair_la_LDFLAGS += -Wl,-z,defs
|
|
endif
|
|
|
|
libnvpair_la_LDFLAGS += -version-info 3:0:0
|
|
|
|
include $(top_srcdir)/config/CppCheck.am
|
|
|
|
# Library ABI
|
|
EXTRA_DIST = libnvpair.abi libnvpair.suppr
|