mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 19:19:32 +03:00
1f4e2c88fd
The build for ztest always enabled debug information but does not enable asserts unless --enable-debug is used. This will always enable asserts in the ztest code. Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: David Quigley <david.quigley@intel.com> Closes #6640
24 lines
583 B
Makefile
24 lines
583 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
# -Wnoformat-truncation to get rid of compiler warning for unchecked
|
|
# truncating snprintfs on gcc 7.1.1.
|
|
AM_CFLAGS += $(DEBUG_STACKFLAGS) $(FRAME_LARGER_THAN) $(NO_FORMAT_TRUNCATION)
|
|
AM_CPPFLAGS += -DDEBUG -UNDEBUG
|
|
|
|
DEFAULT_INCLUDES += \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/lib/libspl/include
|
|
|
|
sbin_PROGRAMS = ztest
|
|
|
|
ztest_SOURCES = \
|
|
ztest.c
|
|
|
|
ztest_LDADD = \
|
|
$(top_builddir)/lib/libnvpair/libnvpair.la \
|
|
$(top_builddir)/lib/libzfs/libzfs.la \
|
|
$(top_builddir)/lib/libzpool/libzpool.la
|
|
|
|
ztest_LDADD += -lm
|
|
ztest_LDFLAGS = -pthread
|