meson: Fix vc5 deps on the XML-generated headers.

I typoed and was depending on v3d_xml.h (the gzipped xml)_, not on the
v3d_packet_v33_pack.h that the compiler and QPU packing actually use.
This commit is contained in:
Eric Anholt
2017-10-20 17:14:52 -07:00
parent 07bfdb478b
commit 48615d1ead
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ libbroadcom_compiler_files = files(
)
libbroadcom_compiler = static_library(
['broadcom_compiler', v3d_xml_h, nir_opcodes_h, nir_builder_opcodes_h],
['broadcom_compiler', v3d_xml_pack, nir_opcodes_h, nir_builder_opcodes_h],
libbroadcom_compiler_files,
include_directories : [inc_common, inc_broadcom],
c_args : [c_vis_args, no_override_init_args],
+1 -1
View File
@@ -25,7 +25,7 @@ libbroadcom_qpu_files = files(
)
libbroadcom_qpu = static_library(
['broadcom_qpu', v3d_xml_h],
['broadcom_qpu', v3d_xml_pack],
libbroadcom_qpu_files,
include_directories : [inc_common, inc_broadcom],
c_args : [c_vis_args, no_override_init_args],