mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
5f72109e5b
Commit af65916
added -Wl,-z,defs for the shared libraries. This
apparently does not work in some cases with --enable-asan, so only add
it for non-ASAN builds.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: João Carlos Mendes Luis <jonny@jonny.eng.br>
Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu>
Closes #10557
Closes #10560
30 lines
587 B
Makefile
30 lines
587 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
pkgconfig_DATA = libzfs_core.pc
|
|
|
|
lib_LTLIBRARIES = libzfs_core.la
|
|
|
|
USER_C = \
|
|
libzfs_core.c
|
|
|
|
libzfs_core_la_SOURCES = $(USER_C)
|
|
|
|
libzfs_core_la_LIBADD = \
|
|
$(abs_top_builddir)/lib/libzutil/libzutil.la \
|
|
$(abs_top_builddir)/lib/libnvpair/libnvpair.la
|
|
|
|
libzfs_core_la_LIBADD += $(LTLIBINTL)
|
|
|
|
libzfs_core_la_LDFLAGS = -pthread
|
|
|
|
if !ASAN_ENABLED
|
|
libzfs_core_la_LDFLAGS += -Wl,-z,defs
|
|
endif
|
|
|
|
if BUILD_FREEBSD
|
|
libzfs_core_la_LIBADD += -lutil -lgeom
|
|
libzfs_core_la_LDFLAGS += -version-info 3:0:0
|
|
else
|
|
libzfs_core_la_LDFLAGS += -version-info 1:0:0
|
|
endif
|