mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -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
|
SHOBJ_LDFLAGS ?= -shared
|
||||||
endif
|
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 = \
|
TEST_MODULES = \
|
||||||
commandfilter.so \
|
commandfilter.so \
|
||||||
testrdb.so \
|
testrdb.so \
|
||||||
|
Loading…
Reference in New Issue
Block a user