mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-15 20:50:30 +03:00
ebbbe01e31
For #13083, curiously, it did not print the actual error, just that the compile failed with "Error 1". In theory, this flag should cause it to report errors twice sometimes. In practice, I'm pretty okay with reporting some twice if it avoids reporting some never. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Damian Szuberski <szuberskidamian@gmail.com> Signed-off-by: Rich Ercolani <rincebrain@gmail.com> Closes #13086
26 lines
885 B
Makefile
26 lines
885 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
VPATH = $(top_srcdir)/module/zstd
|
|
|
|
# -fno-tree-vectorize is set for gcc in zstd/common/compiler.h
|
|
# Set it for other compilers, too.
|
|
AM_CFLAGS += -fno-tree-vectorize
|
|
# See https://debbugs.gnu.org/cgi/bugreport.cgi?bug=54020
|
|
AM_CFLAGS += -no-suppress
|
|
|
|
noinst_LTLIBRARIES = libzstd.la
|
|
|
|
KERNEL_C = \
|
|
lib/zstd.c \
|
|
zfs_zstd.c
|
|
|
|
nodist_libzstd_la_SOURCES = $(KERNEL_C)
|
|
|
|
lib/zstd.$(OBJEXT): CFLAGS += -fno-tree-vectorize -include $(top_srcdir)/module/zstd/include/zstd_compat_wrapper.h -Wp,-w
|
|
lib/zstd.l$(OBJEXT): CFLAGS += -fno-tree-vectorize -include $(top_srcdir)/module/zstd/include/zstd_compat_wrapper.h -Wp,-w
|
|
|
|
zfs_zstd.$(OBJEXT): CFLAGS += -include $(top_srcdir)/module/zstd/include/zstd_compat_wrapper.h
|
|
zfs_zstd.l$(OBJEXT): CFLAGS += -include $(top_srcdir)/module/zstd/include/zstd_compat_wrapper.h
|
|
|
|
include $(top_srcdir)/config/CppCheck.am
|