From patchwork Fri Dec 7 18:30:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Imre Deak X-Patchwork-Id: 1852501 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork1.kernel.org (Postfix) with ESMTP id 1E5C5400ED for ; Sat, 8 Dec 2012 12:56:36 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id F01CCE5CD7 for ; Sat, 8 Dec 2012 04:56:35 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-pa0-f49.google.com (mail-pa0-f49.google.com [209.85.220.49]) by gabe.freedesktop.org (Postfix) with ESMTP id 39122E5D58 for ; Fri, 7 Dec 2012 10:30:35 -0800 (PST) Received: by mail-pa0-f49.google.com with SMTP id bi1so586636pad.36 for ; Fri, 07 Dec 2012 10:30:34 -0800 (PST) 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=zGY7XrEyK48Xv73K7ESHh5BLg0l2ks+2XZnW62Q7xgQ=; b=0oRZ0wFbenhMI7O5v1eZOUCP2wXUDcimvapfOW8cq6dqHafgCZMNOfp+aXNuuSyic7 KNXUmc0J13FAFglwaPdVzVpFmoinp0WL5rwgz9M1xwY5UwwKaF8pT5dMAJzPAOUlxssa QFn/2ZM83y7ClQDJNsFBBN6YLXvMwhYDJsn4px/i8iAZXTiqIgLw46Zeh1IWRZdzqY1d Tg+rPfs/BAnZBlQXajziN+8OFzB1G7bqo31yZ8aJBwNH/ad4usGHJymwuusZu9oMOqQK EPuOQiflMb5UbOTO0L1Aruxw/rIg4FMJqMJcFhBW/LtOgaWtykFWDGAmp314ccIfyY63 dePA== Received: by 10.68.194.6 with SMTP id hs6mr18008648pbc.77.1354905034925; Fri, 07 Dec 2012 10:30:34 -0800 (PST) Received: from localhost (cs27060040.pp.htv.fi. [89.27.60.40]) by mx.google.com with ESMTPS id sg7sm7069719pbb.50.2012.12.07.10.30.32 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 07 Dec 2012 10:30:33 -0800 (PST) From: Imre Deak To: intel-gfx@lists.freedesktop.org Date: Fri, 7 Dec 2012 20:30:28 +0200 Message-Id: <1354905028-24435-1-git-send-email-imre.deak@intel.com> X-Mailer: git-send-email 1.7.10.4 X-Mailman-Approved-At: Sat, 08 Dec 2012 04:52:04 -0800 Subject: [Intel-gfx] [i-g-t PATCH] flip_test: fix link error due to missing -lrt X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Needed by clock_gettime(). This isn't a problem if libudev is used, as that pulles librt with it. Signed-off-by: Imre Deak --- tests/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index 4658fce..c49d870 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -176,6 +176,7 @@ gem_fence_thrash_LDADD = $(LDADD) -lpthread gem_threaded_access_tiled_LDADD = $(LDADD) -lpthread gem_wait_render_timeout_LDADD = $(LDADD) -lrt +flip_test_LDADD = $(LDADD) -lrt gem_ctx_basic_LDADD = $(LDADD) -lpthread