mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 02:27:36 +03:00
Disable -Wl,-z,defs for ASAN builds
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
This commit is contained in:
committed by
GitHub
parent
e4d3d77684
commit
5f72109e5b
@@ -21,7 +21,11 @@ libuutil_la_LIBADD = \
|
||||
|
||||
libuutil_la_LIBADD += $(LTLIBINTL)
|
||||
|
||||
libuutil_la_LDFLAGS = -pthread -Wl,-z,defs
|
||||
libuutil_la_LDFLAGS = -pthread
|
||||
|
||||
if !ASAN_ENABLED
|
||||
libuutil_la_LDFLAGS += -Wl,-z,defs
|
||||
endif
|
||||
|
||||
if BUILD_FREEBSD
|
||||
libuutil_la_LDFLAGS += -version-info 3:0:0
|
||||
|
||||
Reference in New Issue
Block a user