From patchwork Mon Jun 4 18:48:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Martin X-Patchwork-Id: 162852 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 B45A9B6F77 for ; Tue, 5 Jun 2012 04:49:54 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id F13528D5B8; Mon, 4 Jun 2012 18:49:50 +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 vZghXkmXM9YU; Mon, 4 Jun 2012 18:49:50 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id DB8CE8D4FB; Mon, 4 Jun 2012 18:49:49 +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 5DB7F8F75B for ; Mon, 4 Jun 2012 18:49:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 1FF208D3E6 for ; Mon, 4 Jun 2012 18:49:49 +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 6cjp39TKJ4cx for ; Mon, 4 Jun 2012 18:49:47 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ee0-f43.google.com (mail-ee0-f43.google.com [74.125.83.43]) by whitealder.osuosl.org (Postfix) with ESMTPS id 72EE68D56B for ; Mon, 4 Jun 2012 18:49:43 +0000 (UTC) Received: by eeke50 with SMTP id e50so2521938eek.16 for ; Mon, 04 Jun 2012 11:49:41 -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:x-mailer; bh=hOW9NFrSw/z3AWd+K1QSKuPjm573Ozk9saPYD4VvFh8=; b=soPQ2oqy+eTnTp3ZHIlVzc5NybCFa85dh8tyvZJ15sXcL3npO3ExZjmSp94IQ3eNrz 51RX3h/T7ztCA0Gm33BPZvUDp6aGvYetQLFjypENAHTweBG2lCfwmDu0KnI1XwLBHm4f t6IIpBFZ+JjKMT4FvPUPmvOl/6wKybRaouWfvq4onseUxSwAABbY05BPLD0D/ZRUsmQB 5xsF2WqyE69h0LhZ5bXRTTF4mPD0lvnXqhGuAinMH0f8M1H26q9YyI/HeFL4La36kWjL L8EdoLdEMRb0BLz2xBBAVfO+vP6nDhWiDb0PG8XqP9GrKdDYh8w1n+1IChWnSUJtH9Jd CtJw== Received: by 10.14.28.140 with SMTP id g12mr5528537eea.42.1338835781248; Mon, 04 Jun 2012 11:49:41 -0700 (PDT) Received: from localhost.localdomain (ivr94-4-82-229-165-48.fbx.proxad.net. [82.229.165.48]) by mx.google.com with ESMTPS id s47sm40247316eef.4.2012.06.04.11.49.39 (version=SSLv3 cipher=OTHER); Mon, 04 Jun 2012 11:49:39 -0700 (PDT) From: Samuel Martin To: buildroot@busybox.net Date: Mon, 4 Jun 2012 20:48:31 +0200 Message-Id: <1338835711-3824-1-git-send-email-s.martin49@gmail.com> X-Mailer: git-send-email 1.7.10.3 Subject: [Buildroot] [PATCH 1/1] webrtc-audio-processing: disable unsupported target architectures 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 Currently, webrtc-audio-processing only provides support for the following architectures (see src/typedefs.h from the source directory): - x86_64 - i*86 - armel Fixes http://autobuild.buildroot.org/results/ff777bb06eddafa71327015e1d39fe911c1439d8 Signed-off-by: Samuel Martin diff --git a/package/webrtc-audio-processing/Config.in b/package/webrtc-audio-processing/Config.in index e33fc57..90341d6 100644 --- a/package/webrtc-audio-processing/Config.in +++ b/package/webrtc-audio-processing/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING bool "webrtc-audio-processing" + depends on BR2_arm || BR2_i386 || BR2_x86_64 depends on BR2_INSTALL_LIBSTDCPP help AudioProcessing library based on Google's implementation of