From: Tim Gore <tim.g...@intel.com>

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 <tim.g...@intel.com>
---
 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 7b06ec3..83f93a2 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
-- 
2.3.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to