mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 08:08:53 -05:00
Fix again stack generation on the Raspberry Pi.
The fix was removed by c8ca71d40
attempting to fix the stack generation
on ARM64, without testing if it would still work on ARM32.
Now it should work both sides.
This commit is contained in:
parent
144832ee67
commit
f30b18f4de
@ -41,6 +41,10 @@ endif
|
||||
# To get ARM stack traces if Redis crashes we need a special C flag.
|
||||
ifneq (,$(filter aarch64 armv,$(uname_M)))
|
||||
CFLAGS+=-funwind-tables
|
||||
else
|
||||
ifneq (,$(findstring armv,$(uname_M)))
|
||||
CFLAGS+=-funwind-tables
|
||||
endif
|
||||
endif
|
||||
|
||||
# Backwards compatibility for selecting an allocator
|
||||
|
Loading…
Reference in New Issue
Block a user