From patchwork Mon Nov 11 10:20:34 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 290224 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 9CA912C008E for ; Mon, 11 Nov 2013 21:20:43 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id A31228B0B7; Mon, 11 Nov 2013 10:20:42 +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 K35US_mT_EFq; Mon, 11 Nov 2013 10:20:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 233D18B102; Mon, 11 Nov 2013 10:20:41 +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 33D8E1C2072 for ; Mon, 11 Nov 2013 10:20:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2E1FF8C30A for ; Mon, 11 Nov 2013 10:20:40 +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 S0JUFmMD59Mi for ; Mon, 11 Nov 2013 10:20:39 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com [209.85.212.179]) by whitealder.osuosl.org (Postfix) with ESMTPS id B43128C27A for ; Mon, 11 Nov 2013 10:20:38 +0000 (UTC) Received: by mail-wi0-f179.google.com with SMTP id fb10so1893900wid.0 for ; Mon, 11 Nov 2013 02:20:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=ro1bGKo3AsuZqGDU6Qu4p5y4SKUIqN9SeKhYWfnqr9U=; b=Lnxu7JuzvvwchoE/bQMvAPPbA/kDg3s/gKDIbWCtPQvnkotgGnQBFEy4jXiSaauV4L YwQxbDFyvQdwwXIJ6YOP3jd6b7KIY/N8t+bg+8Owl+TPJfISCxy7YkNdOs8ILB7Qw3XU AVx5Xs9M9qk2+yTVjRAQpCw4brXuijSWFRjQZN4h/Hi0t+bXL6BS8T9KBFf5LDiEsSvK YcZQisOjo8CCnX+WaIryylWZ09X0mY+UVNnNGO/ucYzSJ216xMhPejv9XZxsxF4XhY0Z rQuzZiFScUshPGlHqj5j0JNEFVkg5+yxfxCd6g7jPqva3omIqZEHwhaYEDZ/OI7/LJjd OmCw== X-Received: by 10.180.189.132 with SMTP id gi4mr11796346wic.19.1384165237168; Mon, 11 Nov 2013 02:20:37 -0800 (PST) Received: from localhost.localdomain (host86-134-30-28.range86-134.btcentralplus.com. [86.134.30.28]) by mx.google.com with ESMTPSA id w10sm32711836wia.4.2013.11.11.02.20.35 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Nov 2013 02:20:36 -0800 (PST) From: spdawson@gmail.com To: buildroot@busybox.net Date: Mon, 11 Nov 2013 10:20:34 +0000 Message-Id: <1384165234-18705-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] iozone: depends on threads 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 From: Simon Dawson Signed-off-by: Simon Dawson --- package/iozone/Config.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package/iozone/Config.in b/package/iozone/Config.in index 33e12ca..6638b7c 100644 --- a/package/iozone/Config.in +++ b/package/iozone/Config.in @@ -2,8 +2,14 @@ config BR2_PACKAGE_IOZONE bool "iozone" depends on BR2_USE_MMU # fork() depends on !BR2_UCLIBC_VERSION_0_9_31 # no pthread_setaffinity_np + depends on BR2_PTHREADS_NATIVE || BR2_TOOLCHAIN_BUILDROOT_EGLIBC || BR2_TOOLCHAIN_BUILDROOT_GLIBC help IOzone is a filesystem benchmark tool. The benchmark generates and measures a variety of file operations http://www.iozone.org/ + +comment "iozone needs a toolchain w/ threads" + depends on BR2_USE_MMU + depends on !BR2_UCLIBC_VERSION_0_9_31 + depends on !(BR2_PTHREADS_NATIVE || BR2_TOOLCHAIN_BUILDROOT_EGLIBC || BR2_TOOLCHAIN_BUILDROOT_GLIBC)