mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 18:35:46 +02:00
fix(lua): Fix build on arm (#1404)
* fix(lua): Fix build on arm * space instead of comma lovely makefile syntax
This commit is contained in:
parent
d6e97fcf6d
commit
0dac3da4f4
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ index d46e650c..e347e614 100644
|
|||
+uname_m := $(shell uname -m)
|
||||
+
|
||||
+# equivalent to: if $(uname_m) == x86_64 || $(uname_m) == amd64
|
||||
+ifneq (, $(uname_m),x86_64,amd64)
|
||||
+ifneq (, $(filter $(uname_m),x86_64 amd64))
|
||||
+OPTFLAGS= -march=sandybridge
|
||||
+else ifeq ($(uname_m), aarch64)
|
||||
+OPTFLAGS= -march=armv8.2-a+fp16+rcpc+dotprod+crypto
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue