mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
package/ljsyscall: fix build with aarch64
luajit supports aarch64 since commit 2ca0accc21a090874ac6e97670b47153a1f0a0b5 However this raise a build failure with ljsyscall because aarch64 directory does not exist so use arm64 instead Fixes: - http://autobuild.buildroot.org/results/3a0bd14349b3cab3e09d0b8b24ddab66dfab91ff Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
dbc161e816
commit
ac31b3465f
@ -18,6 +18,8 @@ else ifeq ($(BR2_powerpc),y)
|
||||
LJSYSCALL_ARCH = ppc
|
||||
else ifeq ($(BR2_arm)$(BR2_armeb),y)
|
||||
LJSYSCALL_ARCH = arm
|
||||
else ifeq ($(BR2_aarch64),y)
|
||||
LJSYSCALL_ARCH = arm64
|
||||
else ifeq ($(BR2_mips)$(BR2_mipsel),y)
|
||||
LJSYSCALL_ARCH = mips
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user