mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-20 14:26:17 +00:00
If we listen to the uevents from the kernel, we can detect when the GPU hangs. This requires us to fork a helper process to do so and send a signal back to the parent. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
22 lines
645 B
Makefile
22 lines
645 B
Makefile
include Makefile.sources
|
|
|
|
SUBDIRS = null_state_gen registers
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/lib
|
|
AM_CFLAGS = $(DEBUG_CFLAGS) $(DRM_CFLAGS) $(PCIACCESS_CFLAGS) $(CWARNFLAGS) $(CAIRO_CFLAGS) $(LIBUNWIND_CFLAGS) -DPKGDATADIR=\"$(pkgdatadir)\"
|
|
LDADD = $(top_builddir)/lib/libintel_tools.la
|
|
AM_LDFLAGS = -Wl,--as-needed
|
|
|
|
|
|
# aubdumper
|
|
|
|
module_LTLIBRARIES = intel_aubdump.la
|
|
moduledir = $(libdir)
|
|
intel_aubdump_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
intel_aubdump_la_SOURCES = aubdump.c intel_aub.h
|
|
intel_aubdump_la_LIBADD = $(top_builddir)/lib/libintel_tools.la -ldl
|
|
|
|
bin_SCRIPTS = intel_aubdump
|
|
CLEANFILES = $(bin_SCRIPTS)
|
|
|