All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/luvi: fix build with aarch64
@ 2019-12-26  8:24 Fabrice Fontaine
  2019-12-26  8:39 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2019-12-26  8:24 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/luvi/luvi.mk b/package/luvi/luvi.mk
index b6454ed32b..e311504e96 100644
--- a/package/luvi/luvi.mk
+++ b/package/luvi/luvi.mk
@@ -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)
-- 
2.24.0

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

* [Buildroot] [PATCH 1/1] package/luvi: fix build with aarch64
  2019-12-26  8:24 [Buildroot] [PATCH 1/1] package/luvi: fix build with aarch64 Fabrice Fontaine
@ 2019-12-26  8:39 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2019-12-26  8:39 UTC (permalink / raw)
  To: buildroot

On Thu, 26 Dec 2019 09:24:47 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

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

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2019-12-26  8:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-26  8:24 [Buildroot] [PATCH 1/1] package/luvi: fix build with aarch64 Fabrice Fontaine
2019-12-26  8:39 ` 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.