From patchwork Fri Jul 12 00:58:55 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 258673 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id EE8022C037B for ; Fri, 12 Jul 2013 10:59:18 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3962E8D6D9; Fri, 12 Jul 2013 00:59:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id d78Z3oys3uRe; Fri, 12 Jul 2013 00:59:09 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 9161E8D568; Fri, 12 Jul 2013 00:59:08 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 460EF1BFA5D for ; Fri, 12 Jul 2013 00:59:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 100C08D51F for ; Fri, 12 Jul 2013 00:59:07 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id B3g31cDlmHGL for ; Fri, 12 Jul 2013 00:59:05 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 44BF18D528 for ; Fri, 12 Jul 2013 00:59:04 +0000 (UTC) Received: from asgard (host171.201-252-80.telecom.net.ar [201.252.80.171]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r6C0wvTJ027342 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 12 Jul 2013 00:59:00 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1373590742; bh=99TVR6uKz1rYEbKTsxUXqNJih/eLAljDvD2s4L+SVfQ=; h=From:To:Cc:Subject:Date; b=iPMT624btdD8AR5epsKKML9JnVgLZRujDwvK8TJfFty4ceLjxZbJ+p0lS0KU5x7V+ Bm6cRLP8OlvAzOiiKcSWBMXPtDiGTEgEvPq5TyjN0A3zCehfzSFlXjrv4BD4ZHdDaH P02/xv1W7372yWB5J8tF5m3LKTkTV/qwPjaSx0SQ= Received: by asgard (sSMTP sendmail emulation); Thu, 11 Jul 2013 21:58:55 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 11 Jul 2013 21:58:55 -0300 Message-Id: <1373590735-24767-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] nodejs: not supported on old ARM cores 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net nodejs needs the ARM blx instruction which is only supported in v5t+ cores (v5 ISA with thumb instructions). Disable it for lower cores. Fixes: http://autobuild.buildroot.net/results/89e/89ee5ba047a26a8c7a612d0285b08780b70efbd4/ Signed-off-by: Gustavo Zacarias --- package/nodejs/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/nodejs/Config.in b/package/nodejs/Config.in index aa65c6f..fea3480 100644 --- a/package/nodejs/Config.in +++ b/package/nodejs/Config.in @@ -5,6 +5,8 @@ config BR2_PACKAGE_NODEJS depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_INSTALL_LIBSTDCPP depends on BR2_arm || BR2_i386 || BR2_x86_64 + # ARM needs BLX, so v5t+ + depends on !(BR2_arm7tdmi || BR2_arm720t || BR2_arm920t || BR2_arm922t || BR2_fa526) # uses fork() depends on BR2_USE_MMU help