mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
5c67820265
libzstd now also allocates its own abd_t, and so has the same issue as
zstream did, so this applies the same workaround: compile it with
ZFS_DEBUG. See 92fca1c2d
.
This looks weird, because libzstd doesn't appear to look related to the
ZFS kernel, but there is already a cross-dependency there: zstd needs
zfs_lz4_compress, and zfs needs zfs_zstd_compress (and others), so the
two can never really be separated without more work. Another job for
another time.
Sponsored-by: Klara, Inc.
Sponsored-by: Wasabi Technology, Inc.
Reviewed by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Mark Maybee <mmaybee@delphix.com>
Signed-off-by: Rob Norris <rob.norris@klarasystems.com>
Closes #16489
35 lines
1.4 KiB
Makefile
35 lines
1.4 KiB
Makefile
libzstd_la_CFLAGS = $(AM_CFLAGS) $(LIBRARY_CFLAGS)
|
|
libzstd_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBZPOOL_CPPFLAGS)
|
|
|
|
# -fno-tree-vectorize is set for gcc in zstd/common/compiler.h
|
|
# Set it for other compilers, too.
|
|
libzstd_la_CFLAGS += -fno-tree-vectorize
|
|
|
|
noinst_LTLIBRARIES += libzstd.la
|
|
|
|
nodist_libzstd_la_SOURCES = \
|
|
module/zstd/lib/common/entropy_common.c \
|
|
module/zstd/lib/common/error_private.c \
|
|
module/zstd/lib/common/fse_decompress.c \
|
|
module/zstd/lib/common/pool.c \
|
|
module/zstd/lib/common/zstd_common.c \
|
|
module/zstd/lib/compress/fse_compress.c \
|
|
module/zstd/lib/compress/hist.c \
|
|
module/zstd/lib/compress/huf_compress.c \
|
|
module/zstd/lib/compress/zstd_compress_literals.c \
|
|
module/zstd/lib/compress/zstd_compress_sequences.c \
|
|
module/zstd/lib/compress/zstd_compress_superblock.c \
|
|
module/zstd/lib/compress/zstd_compress.c \
|
|
module/zstd/lib/compress/zstd_double_fast.c \
|
|
module/zstd/lib/compress/zstd_fast.c \
|
|
module/zstd/lib/compress/zstd_lazy.c \
|
|
module/zstd/lib/compress/zstd_ldm.c \
|
|
module/zstd/lib/compress/zstd_opt.c \
|
|
module/zstd/lib/decompress/huf_decompress.c \
|
|
module/zstd/lib/decompress/zstd_ddict.c \
|
|
module/zstd/lib/decompress/zstd_decompress.c \
|
|
module/zstd/lib/decompress/zstd_decompress_block.c \
|
|
module/zstd/zfs_zstd.c
|
|
|
|
libzstd_la_CFLAGS += -include $(top_srcdir)/module/zstd/include/zstd_compat_wrapper.h -fno-tree-vectorize -Wp,-w $(AM_CFLAGS)
|