mirror of
http://github.com/valkey-io/valkey
synced 2024-11-21 16:46:15 +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
|
||||
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 = \
|
||||
commandfilter.so \
|
||||
basics.so \
|
||||
|
Loading…
Reference in New Issue
Block a user