From patchwork Wed Sep 27 18:37:35 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Anholt X-Patchwork-Id: 9974569 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id AF41E60375 for ; Wed, 27 Sep 2017 18:38:12 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A7700292AF for ; Wed, 27 Sep 2017 18:38:12 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9C527292B5; Wed, 27 Sep 2017 18:38:12 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id B24FD292C1 for ; Wed, 27 Sep 2017 18:38:10 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 02C816E041; Wed, 27 Sep 2017 18:37:39 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from anholt.net (anholt.net [50.246.234.109]) by gabe.freedesktop.org (Postfix) with ESMTP id DC57B6E041 for ; Wed, 27 Sep 2017 18:37:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by anholt.net (Postfix) with ESMTP id 773EA10A131B; Wed, 27 Sep 2017 11:37:37 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at anholt.net Received: from anholt.net ([127.0.0.1]) by localhost (kingsolver.anholt.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Dxt1mFwHgBnO; Wed, 27 Sep 2017 11:37:36 -0700 (PDT) Received: from eliezer.anholt.net (localhost [127.0.0.1]) by anholt.net (Postfix) with ESMTP id 0183910A03FA; Wed, 27 Sep 2017 11:37:35 -0700 (PDT) Received: by eliezer.anholt.net (Postfix, from userid 1000) id 2E63F2FE21E4; Wed, 27 Sep 2017 11:37:35 -0700 (PDT) From: Eric Anholt To: intel-gfx@lists.freedesktop.org Date: Wed, 27 Sep 2017 11:37:35 -0700 Message-Id: <20170927183735.14824-3-eric@anholt.net> X-Mailer: git-send-email 2.14.1 In-Reply-To: <20170927183735.14824-1-eric@anholt.net> References: <20170927183735.14824-1-eric@anholt.net> Subject: [Intel-gfx] [PATCH i-g-t 3/3] meson: Disable the intel overlay on non-x86 builds. X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Virus-Scanned: ClamAV using ClamSMTP It's got calls to rmb/wmb that end up not linking successfully. Signed-off-by: Eric Anholt --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 1cc501f3062f..7a09228292fd 100644 --- a/meson.build +++ b/meson.build @@ -121,6 +121,8 @@ subdir('benchmarks') subdir('tools') if libdrm_intel.found() subdir('assembler') - subdir('overlay') + if ['x86', 'x86_64'].contains(host_machine.cpu_family()) + subdir('overlay') + endif endif subdir('man')