mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 09:17:20 +00:00
Fix 32-bit test modules build. (#8448)
This commit is contained in:
parent
de6f3ad017
commit
52fb306535
@ -10,6 +10,12 @@ else # Linux, others
|
||||
SHOBJ_LDFLAGS ?= -shared
|
||||
endif
|
||||
|
||||
# Needed to satisfy __stack_chk_fail_local on Linux with -m32, due to gcc
|
||||
# -fstack-protector by default. Breaks on FreeBSD so we exclude it.
|
||||
ifneq ($(uname_S),FreeBSD)
|
||||
LIBS = -lc
|
||||
endif
|
||||
|
||||
TEST_MODULES = \
|
||||
commandfilter.so \
|
||||
testrdb.so \
|
||||
|
Loading…
Reference in New Issue
Block a user