From patchwork Tue Apr 1 09:12:49 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 335715 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 0F732140149 for ; Tue, 1 Apr 2014 20:13:05 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id E31168B7EE; Tue, 1 Apr 2014 09:13:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id E4hl4yEsDQY0; Tue, 1 Apr 2014 09:13:02 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1934F8B7A5; Tue, 1 Apr 2014 09:13:01 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 4D6811C2441 for ; Tue, 1 Apr 2014 09:13:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 48F9A8A4DD for ; Tue, 1 Apr 2014 09:13:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0cOpM30m9UxD for ; Tue, 1 Apr 2014 09:12:59 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pd0-f174.google.com (mail-pd0-f174.google.com [209.85.192.174]) by hemlock.osuosl.org (Postfix) with ESMTPS id 809738A4D5 for ; Tue, 1 Apr 2014 09:12:59 +0000 (UTC) Received: by mail-pd0-f174.google.com with SMTP id y13so9228170pdi.19 for ; Tue, 01 Apr 2014 02:12:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=qB0lyD/X84XANSjy87ceBwpiwT8tREWXo1sUY9EMJAc=; b=0Sg536inAncOSy+Mddq1CIyVCCkL189jWveIKsp0I6KLNK2ooeAc1sDSZ73jTR6EFW Ph6/9B6/kN2QJotIf6tRfx2ynACUK63ixFRcvAmWUchmCPK4ebOZR+2n8lGdM8BQ7c3w FDYMVVZiWMzhAqRiUo1rN0FhtMNhqe1Un/BJV4Dp5ETctZMsqyvBo2k4r7x6sp9e/T6b lenXCst01UuY5CaiEsXn+ROgs52rF9XY3+UXC/MQ8hWarmm7BnZt1DPKeYqcpmK/jB/A SGM2xesCNc8b/RwIDaKwzQ1OIYqh+x6A1F+TIWsVrK6n9NqjzDv/Sb3H1ftGLOZHEwHB U6lQ== X-Received: by 10.68.254.5 with SMTP id ae5mr29676709pbd.83.1396343579013; Tue, 01 Apr 2014 02:12:59 -0700 (PDT) Received: from ld2077.tmt.telital.com ([213.205.6.118]) by mx.google.com with ESMTPSA id wp3sm48600735pbc.67.2014.04.01.02.12.56 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 01 Apr 2014 02:12:58 -0700 (PDT) From: Fabio Porcedda To: buildroot@uclibc.org Date: Tue, 1 Apr 2014 11:12:49 +0200 Message-Id: <1396343572-13551-2-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1396343572-13551-1-git-send-email-fabio.porcedda@gmail.com> References: <1396343572-13551-1-git-send-email-fabio.porcedda@gmail.com> MIME-Version: 1.0 Cc: Thomas Petazzoni , "Yann E. MORIN" Subject: [Buildroot] [PATCH v2 1/4] luajit: needs for 32bit archictectures a 32bit host gcc X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net For 32 bit archictectures the luajit package needs a host compiler able to generate 32 bit code using the "-m32" option so check if that option is supported. Signed-off-by: Fabio Porcedda Acked-by: François Perrad Cc: Yann E. MORIN Cc: Thomas Petazzoni --- package/luajit/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/luajit/Config.in b/package/luajit/Config.in index 9c4ecc3..dd93609 100644 --- a/package/luajit/Config.in +++ b/package/luajit/Config.in @@ -4,6 +4,7 @@ config BR2_PACKAGE_LUAJIT # Luajit is only available for some target architectures, and # has some complexity wrt 32/64. See luajit.mk for details. depends on BR2_i386 || (BR2_x86_64 && BR2_HOSTARCH='x86_64') || BR2_powerpc || BR2_arm || BR2_armeb + select BR2_HOSTARCH_NEEDS_IA32_COMPILER if !BR2_ARCH_IS_64 help LuaJIT implements the full set of language features defined by Lua 5.1. The virtual machine (VM) is API- and