From 20ad3e55fbd33f4400d16d4186befd7e2e5d19ac Mon Sep 17 00:00:00 2001 From: Tim Gore Date: Tue, 21 Apr 2015 17:08:17 +0100 Subject: [PATCH] tools/quick_dump/makefile.am: add -lrt to get clock_gettime Attempting to build IGT on linux without libunwind fails due to tools/quick_dump not linking the rt library, causing an undefined symbol error for clock_gettime. Adding -lrt to the list of libraries in Makefile.am fixes this. Signed-off-by: Tim Gore Signed-off-by: Thomas Wood --- tools/quick_dump/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/quick_dump/Makefile.am b/tools/quick_dump/Makefile.am index 7b06ec3d..83f93a20 100644 --- a/tools/quick_dump/Makefile.am +++ b/tools/quick_dump/Makefile.am @@ -14,6 +14,7 @@ I915ChipsetPython_la_LIBADD = \ $(DRM_LIBS) \ $(CAIRO_LIBS) \ $(LIBUNWIND_LIBS) \ + -lrt $(NULL) chipset.py: chipset_wrap_python.c