mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-19 02:41:00 +03:00
72154bd6c9
Also remove -Wno-unused-but-set-variable Upstream-bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61118 Reviewed-by: Alejandro Colomar <alx.manpages@gmail.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #13110
16 lines
312 B
Makefile
16 lines
312 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
AM_CFLAGS += -fvisibility=hidden
|
|
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61118
|
|
AM_CFLAGS += $(NO_CLOBBERED)
|
|
|
|
noinst_LTLIBRARIES = libtpool.la
|
|
|
|
USER_C = \
|
|
thread_pool.c \
|
|
thread_pool_impl.h
|
|
|
|
libtpool_la_SOURCES = $(USER_C)
|
|
|
|
include $(top_srcdir)/config/CppCheck.am
|