All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/ljsyscall: fix build with aarch64
@ 2019-12-13 22:09 Fabrice Fontaine
  2019-12-13 22:09 ` [Buildroot] [PATCH 2/2] package/ljsyscall: add hash for license file Fabrice Fontaine
  2019-12-14 15:25 ` [Buildroot] [PATCH 1/2] package/ljsyscall: fix build with aarch64 Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2019-12-13 22:09 UTC (permalink / raw)
  To: buildroot

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>
---
 package/ljsyscall/ljsyscall.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/ljsyscall/ljsyscall.mk b/package/ljsyscall/ljsyscall.mk
index 30b5cde22a..12dfbcb4ae 100644
--- a/package/ljsyscall/ljsyscall.mk
+++ b/package/ljsyscall/ljsyscall.mk
@@ -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
-- 
2.24.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-12-14 15:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-13 22:09 [Buildroot] [PATCH 1/2] package/ljsyscall: fix build with aarch64 Fabrice Fontaine
2019-12-13 22:09 ` [Buildroot] [PATCH 2/2] package/ljsyscall: add hash for license file Fabrice Fontaine
2019-12-14 15:25 ` [Buildroot] [PATCH 1/2] package/ljsyscall: fix build with aarch64 Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.