mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-01 23:47:42 +00:00
package/luvi: fix build with aarch64
aarch64 is a supported architecture of luajit since switch to moonjit fork in commit 2ca0accc21a090874ac6e97670b47153a1f0a0b5 so manage this new target in luvi.mk to avoid an "unknown architecture" build failure Fixes: - http://autobuild.buildroot.org/results/ae610141b488d7ca8ea9db0575dec8f5eb13650c Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
f64701b03d
commit
29cb5dae91
@ -20,6 +20,8 @@ else ifeq ($(BR2_powerpc),y)
|
||||
LUVI_TARGET_ARCH = ppc
|
||||
else ifeq ($(BR2_arm)$(BR2_armeb),y)
|
||||
LUVI_TARGET_ARCH = arm
|
||||
else ifeq ($(BR2_aarch64),y)
|
||||
LUVI_TARGET_ARCH = arm64
|
||||
else ifeq ($(BR2_mips),y)
|
||||
LUVI_TARGET_ARCH = mips
|
||||
else ifeq ($(BR2_mipsel),y)
|
||||
|
Loading…
x
Reference in New Issue
Block a user