From patchwork Tue Nov 20 19:01:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Zankel X-Patchwork-Id: 200603 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 5B4892C007E for ; Wed, 21 Nov 2012 19:23:12 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id D803320155; Wed, 21 Nov 2012 08:23:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JDf-9SL2xbrB; Wed, 21 Nov 2012 08:23:09 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id B549A20192; Wed, 21 Nov 2012 08:23:09 +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 415068F74A for ; Wed, 21 Nov 2012 08:23:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 971598C8DD for ; Wed, 21 Nov 2012 08:23: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 USLmWHQ2+Rdd for ; Wed, 21 Nov 2012 08:23:06 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pa0-f43.google.com (mail-pa0-f43.google.com [209.85.220.43]) by whitealder.osuosl.org (Postfix) with ESMTPS id B5DEC8C7F4 for ; Wed, 21 Nov 2012 08:23:06 +0000 (UTC) Received: by mail-pa0-f43.google.com with SMTP id fb10so2657293pad.16 for ; Wed, 21 Nov 2012 00:23:06 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:from:date:subject:to:x-gm-message-state; bh=iBZBuTIGo8ysuNtbvk0E5Nbh2HkIAIjVi0CwCyGCW+M=; b=Zv9kkooo5Rc17auskLtHUsKVbroXeRdIsLpf8GfnYT6DR2IJAm3pGeOvdMiAZz9xf7 bsXZ+g7oZkThOLS0FcARDGU6D7Y6qsIgKz4WZWbFl7lZo9bXJdrNsqP+uW7A51jfjSV4 auGGlQjnhN7Kq8AkkHQYd64fDh+hBCjsRAex++2ekqxK+3Mq0eEe6slmRFafME4ogeNU 5bwqzNuJwEpdhSZprVlZtg4eXqM6Z49aMA9kp4lGrKgXck7zuojYQvkpTFz89+ufehsv O3fF9ttq2cY9kMTyJ4dAWauiuOHx5fefRRcHvSRLgO76TGvqyeKhfTlGB5tSqD7mEgb/ +6BA== Received: by 10.68.209.170 with SMTP id mn10mr57524721pbc.11.1353486186473; Wed, 21 Nov 2012 00:23:06 -0800 (PST) Received: from localhost (c-67-161-9-61.hsd1.ca.comcast.net. [67.161.9.61]) by mx.google.com with ESMTPS id c5sm3507546pav.33.2012.11.21.00.23.04 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 21 Nov 2012 00:23:05 -0800 (PST) Message-ID: <50ac8f69.6548420a.6f5c.2a1b@mx.google.com> Received: by localhost (sSMTP sendmail emulation); Wed, 21 Nov 2012 00:23:04 -0800 From: Chris Zankel Date: Tue, 20 Nov 2012 11:01:49 -0800 To: buildroot@busybox.net X-Gm-Message-State: ALoCoQmLh+cD9q0yEA30KEvCqDHcrGGh6SE9G8QawZmM3xVwi4FT/92BU7vNKo9d+AnnHke8OWB/ Subject: [Buildroot] [PATCH 3/3] xtensa: disable libffi for Xtensa 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 Xtensa currently doesn't support libffi. Signed-off-by: Chris Zankel --- package/libffi/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/libffi/Config.in b/package/libffi/Config.in index 7211f8f..4afb669 100644 --- a/package/libffi/Config.in +++ b/package/libffi/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBFFI bool "libffi" + depends on !BR2_xtensa help The libffi library provides a portable, high level programming interface to various calling conventions. This