mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 00:52:38 +00:00
Fix test modules build issue on OS X 11. (#9658)
(cherry picked from commit 8bf4c2e38c
)
This commit is contained in:
parent
215c5eacb0
commit
3053337043
@ -16,6 +16,13 @@ ifneq ($(uname_S),FreeBSD)
|
|||||||
LIBS = -lc
|
LIBS = -lc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# OS X 11.x doesn't have /usr/lib/libSystem.dylib and needs an explicit setting.
|
||||||
|
ifeq ($(uname_S),Darwin)
|
||||||
|
ifeq ("$(wildcard /usr/lib/libSystem.dylib)","")
|
||||||
|
LIBS = -L /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib -lsystem
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
TEST_MODULES = \
|
TEST_MODULES = \
|
||||||
commandfilter.so \
|
commandfilter.so \
|
||||||
basics.so \
|
basics.so \
|
||||||
|
Loading…
Reference in New Issue
Block a user