From f1f1cb41d0a80230085e63e8de65aa58ff3872da Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Mon, 27 Mar 2017 11:57:48 -0700 Subject: [PATCH] mesa/tests: Link main-test with CLOCK_LIB. Fix 'make check' linking error with glibc < 2.17. CXXLD main-test ../../../../src/mesa/.libs/libmesa.a(libmesautil_la-u_queue.o): In function `u_thread_get_time_nano': src/util/../../src/util/u_thread.h:84: undefined reference to `clock_gettime' Signed-off-by: Vinson Lee --- src/mesa/main/tests/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mesa/main/tests/Makefile.am b/src/mesa/main/tests/Makefile.am index 18f750e..8b4598d 100644 --- a/src/mesa/main/tests/Makefile.am +++ b/src/mesa/main/tests/Makefile.am @@ -19,7 +19,8 @@ main_test_LDADD = \ $(top_builddir)/src/mesa/libmesa.la \ $(top_builddir)/src/gtest/libgtest.la \ $(PTHREAD_LIBS) \ - $(DLOPEN_LIBS) + $(DLOPEN_LIBS) \ + $(CLOCK_LIB) if HAVE_SHARED_GLAPI AM_CPPFLAGS += -DHAVE_SHARED_GLAPI -- 2.7.4