diff options
author | Dave Airlie <[email protected]> | 2017-05-09 15:47:12 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-06-01 11:20:11 +1000 |
commit | f42fb0012a04576884f7dcf227df640ed60d9655 (patch) | |
tree | dbd90387dae6c1b987210573174e8e5e4aefffad /src/gallium/drivers/r600/Makefile.am | |
parent | 55d1550d352fd9ef820311a5a08815685e42f3d7 (diff) |
r600/eg: add support for tracing IBs after a hang.
This is a poor man's version of radeonsi ddebug stuff, this
should get hooked into that infrastructure, and grow more stuff,
but for now, just create R600_TRACE var that points to a file
that you want to dump the last IB to.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/Makefile.am')
-rw-r--r-- | src/gallium/drivers/r600/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/Makefile.am b/src/gallium/drivers/r600/Makefile.am index 21762d838d0..44fd51d216a 100644 --- a/src/gallium/drivers/r600/Makefile.am +++ b/src/gallium/drivers/r600/Makefile.am @@ -1,6 +1,11 @@ include Makefile.sources include $(top_srcdir)/src/gallium/Automake.inc +egd_tables.h: $(srcdir)/egd_tables.py $(srcdir)/evergreend.h + $(AM_V_at)$(MKDIR_P) $(@D) + $(AM_V_GEN) $(PYTHON2) $(srcdir)/egd_tables.py $(srcdir)/evergreend.h > $@ + +BUILT_SOURCES = $(R600_GENERATED_FILES) AM_CFLAGS = \ $(GALLIUM_DRIVER_CFLAGS) \ $(RADEON_CFLAGS) \ |