mirror of
https://github.com/redis/redis.git
synced 2025-12-18 21:46:08 -05:00
Prevent building with modules on 32-bit systems (#14618)
Redis modules do not support 32-bit architectures. The build now fails early when modules are enabled on such systems.
This commit is contained in:
parent
679e009b73
commit
ec84bd6143
1 changed files with 3 additions and 0 deletions
3
Makefile
3
Makefile
|
|
@ -2,6 +2,9 @@
|
|||
|
||||
SUBDIRS = src
|
||||
ifeq ($(BUILD_WITH_MODULES), yes)
|
||||
ifeq ($(MAKECMDGOALS),32bit)
|
||||
$(error BUILD_WITH_MODULES=yes is not supported on 32 bit systems)
|
||||
endif
|
||||
SUBDIRS += modules
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue