meson: Fix vc5 deps on the XML-generated headers.
authorEric Anholt <eric@anholt.net>
Sat, 21 Oct 2017 00:14:52 +0000 (17:14 -0700)
committerEric Anholt <eric@anholt.net>
Sat, 21 Oct 2017 00:16:00 +0000 (17:16 -0700)
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.

src/broadcom/compiler/meson.build
src/broadcom/qpu/meson.build

index bedf0ad522adea7da97e220d3557837b81aba418..3c6281956f1cacee175e8c129f5fc334ed73c72d 100644 (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],
index ca90aa23aa8a7df51499820422d8a33dd9b51351..8178ddbd53b91103f45fe4693bc3c85b9d882b03 100644 (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],