From patchwork Fri Nov 29 09:23:49 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 295188 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 748332C0086 for ; Fri, 29 Nov 2013 20:23:59 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 38FD093973; Fri, 29 Nov 2013 09:23:58 +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 i+E1WjAYCCjT; Fri, 29 Nov 2013 09:23:57 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 163D39387D; Fri, 29 Nov 2013 09:23:57 +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 577F51BF9E7 for ; Fri, 29 Nov 2013 09:23:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 517958B93D for ; Fri, 29 Nov 2013 09:23:55 +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 D4slHiJLYLbO for ; Fri, 29 Nov 2013 09:23:54 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wg0-f45.google.com (mail-wg0-f45.google.com [74.125.82.45]) by whitealder.osuosl.org (Postfix) with ESMTPS id 861158AA92 for ; Fri, 29 Nov 2013 09:23:54 +0000 (UTC) Received: by mail-wg0-f45.google.com with SMTP id y10so7381319wgg.24 for ; Fri, 29 Nov 2013 01:23:52 -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=4QWN5wGtJRqBbcD5ApHKQ42xizLKgIXJOlZ2N+QxoC0=; b=w+tgJfdP+3/Jhu1n/waNoQmScLEgt+/KZBDCiKdFpf4gdpin3shzHVedL/URBoyfI1 EfReWFsG7MHwfykX6E6BAh9RV8TNTvR0gOM+Wl1VBBPwqXyg8Z6ckzKUhiPusNBl4+rr clHHczs0ntFKeT+nSiRcA/E8BJ7s0DwKoATqEkuxfSjtiK7JqVP72t6FNUu34iYYeZAv cDQTPA3lKJ3PqTwYNV3hEXcMS+gy1xqgrzmOjDddBG7vzTgJZbU3/A6dMWPP+j3ud8N/ fsPYePVKIk914j3QTtA5CWZhsDb9G9dPD6dT9ES3TwaRDfhV1qySQ+crRWuAnRB5MNtq cSPQ== X-Received: by 10.194.109.167 with SMTP id ht7mr40491525wjb.5.1385717032883; Fri, 29 Nov 2013 01:23:52 -0800 (PST) Received: from localhost.localdomain (host109-150-80-255.range109-150.btcentralplus.com. [109.150.80.255]) by mx.google.com with ESMTPSA id n6sm70112113wix.3.2013.11.29.01.23.51 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 29 Nov 2013 01:23:51 -0800 (PST) From: spdawson@gmail.com To: buildroot@busybox.net Date: Fri, 29 Nov 2013 09:23:49 +0000 Message-Id: <1385717029-6381-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] libpfm4: disable on avr32 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 The perf_event_open syscall is not available on avr32. Fixes build failures such as the following. http://autobuild.buildroot.net/results/38f/38fa81315be448c409b9af29f92621fcf5676f71/ Signed-off-by: Simon Dawson --- package/libpfm4/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/libpfm4/Config.in b/package/libpfm4/Config.in index 6b491a4..3908e78 100644 --- a/package/libpfm4/Config.in +++ b/package/libpfm4/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBPFM4 bool "libpfm4" + depends on !BR2_avr32 # no perf_event_open help A helper library to help encode Performance Events to use with Operating system kernels performance monitoring interfaces.