mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
Use 'gcc' instead of 'ld' to link test modules. (#9710)
This solves several problems in a more elegant way: * No need to explicitly use `-lc` on x86_64 when building with `-m32`. * Avoids issues with undefined floating point emulation funcs on ARM.
This commit is contained in:
parent
033578839b
commit
f26e90be0c
@ -10,11 +10,9 @@ 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 and macOS 11 so needs
|
|
||||||
# to be Linux specific.
|
|
||||||
ifeq ($(uname_S),Linux)
|
ifeq ($(uname_S),Linux)
|
||||||
LIBS = -lc
|
LD = gcc
|
||||||
|
CC = gcc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# OS X 11.x doesn't have /usr/lib/libSystem.dylib and needs an explicit setting.
|
# OS X 11.x doesn't have /usr/lib/libSystem.dylib and needs an explicit setting.
|
||||||
@ -60,7 +58,7 @@ TEST_MODULES = \
|
|||||||
all: $(TEST_MODULES)
|
all: $(TEST_MODULES)
|
||||||
|
|
||||||
32bit:
|
32bit:
|
||||||
$(MAKE) CFLAGS="-m32" LDFLAGS="-melf_i386"
|
$(MAKE) CFLAGS="-m32" LDFLAGS="-m32"
|
||||||
|
|
||||||
%.xo: %.c ../../src/redismodule.h
|
%.xo: %.c ../../src/redismodule.h
|
||||||
$(CC) -I../../src $(CFLAGS) $(SHOBJ_CFLAGS) -fPIC -c $< -o $@
|
$(CC) -I../../src $(CFLAGS) $(SHOBJ_CFLAGS) -fPIC -c $< -o $@
|
||||||
|
Loading…
Reference in New Issue
Block a user