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>
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