summaryrefslogtreecommitdiffstats
path: root/src/amd/Makefile.common.am
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2016-10-06 20:24:45 +0200
committerMarek Olšák <[email protected]>2017-03-30 14:44:33 +0200
commitef97cc0cae687726a2a7a6c9dccc2e90d04b1d74 (patch)
tree35bea4e3bd1cf1b7b34446cc9a9e148836f23aa1 /src/amd/Makefile.common.am
parent9338ab0afd0ab82a9077e11651c61424039bd12c (diff)
radeonsi/gfx9: add IB parser support
Both GFX6 and GFX9 fields are printed next to each other in parsed IBs. The Python script parses both headers like one stream and tries to merge all definitions. Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/amd/Makefile.common.am')
-rw-r--r--src/amd/Makefile.common.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/Makefile.common.am b/src/amd/Makefile.common.am
index e492fbcb393..595876f610a 100644
--- a/src/amd/Makefile.common.am
+++ b/src/amd/Makefile.common.am
@@ -65,8 +65,8 @@ common_libamd_common_la_SOURCES += $(AMD_NIR_FILES)
endif
endif
-common/sid_tables.h: $(srcdir)/common/sid_tables.py $(srcdir)/common/sid.h
+common/sid_tables.h: $(srcdir)/common/sid_tables.py $(srcdir)/common/sid.h $(srcdir)/common/gfx9d.h
$(AM_V_at)$(MKDIR_P) $(@D)
- $(AM_V_GEN) $(PYTHON2) $(srcdir)/common/sid_tables.py $(srcdir)/common/sid.h > $@
+ $(AM_V_GEN) $(PYTHON2) $(srcdir)/common/sid_tables.py $(srcdir)/common/sid.h $(srcdir)/common/gfx9d.h > $@
BUILT_SOURCES = $(AMD_GENERATED_FILES)