mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05: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